diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-04-17 14:08:45 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-04-17 14:08:45 +0200 |
commit | 44668b36a70fb3f76c96f393e9e4ebfe1589da90 (patch) | |
tree | adee72468a784da58e2bb4323d5452f153d164fd /lib | |
parent | ec280e6f9f43e2f1d74c9ddf1e0fd64aabddc25f (diff) | |
download | nextcloud-server-44668b36a70fb3f76c96f393e9e4ebfe1589da90.tar.gz nextcloud-server-44668b36a70fb3f76c96f393e9e4ebfe1589da90.zip |
Remove not null constraint. Fix #2976
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 37fb1bd9d06..34ed4a2a96a 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 80, 01); + return array(5, 80, 02); } /** |