diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-02-25 16:51:59 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-02-25 16:51:59 +0100 |
commit | dda79a90cf50f98c1dc4c98401be8707b7103346 (patch) | |
tree | fdf1def3068c733c573287d9d2bd42474ef66770 /lib | |
parent | 8b93a9a237603185501d0e24e9c08705168fc553 (diff) | |
download | nextcloud-server-dda79a90cf50f98c1dc4c98401be8707b7103346.tar.gz nextcloud-server-dda79a90cf50f98c1dc4c98401be8707b7103346.zip |
don't limit ourselfs to 32bit integers
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 05caeca0e3e..d1487931db8 100644 --- a/lib/util.php +++ b/lib/util.php @@ -62,7 +62,7 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(3,00,2); + return array(3,00,3); } /** |