diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-17 07:47:17 -0700 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-17 07:47:17 -0700 |
commit | 3b2a0523f8544601a330bffecc1f04645d92dfc4 (patch) | |
tree | e5e45937b5c8708fbba55d3b884349b6f7851661 /lib | |
parent | 867a52714853815da04ef8c43f70deaa2d6b55ee (diff) | |
parent | 44668b36a70fb3f76c96f393e9e4ebfe1589da90 (diff) | |
download | nextcloud-server-3b2a0523f8544601a330bffecc1f04645d92dfc4.tar.gz nextcloud-server-3b2a0523f8544601a330bffecc1f04645d92dfc4.zip |
Merge pull request #2978 from owncloud/displayname_can_be_null
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); } /** |