]> source.dussan.org Git - nextcloud-server.git/commitdiff
Cache: allow file sizes >2GB
authorRobin Appelman <icewind@owncloud.com>
Sun, 10 Feb 2013 15:44:00 +0000 (16:44 +0100)
committerRobin Appelman <icewind@owncloud.com>
Sun, 10 Feb 2013 15:44:00 +0000 (16:44 +0100)
db_structure.xml
lib/util.php

index f353ae080988eb7c35e1fdbefef0c133a7ee4c58..3ce41096d9ed525fe2c7ea32dda053de22c9aab4 100644 (file)
                                <type>integer</type>
                                <default></default>
                                <notnull>true</notnull>
-                               <length>4</length>
+                               <length>8</length>
                        </field>
 
                        <field>
index a5fe4cb175a3ac95c74ad997126687f3d8c52a89..7950586b5804aa1981be1064a4fe52af83c6dde4 100755 (executable)
@@ -74,7 +74,7 @@ class OC_Util {
         */
        public static function getVersion() {
                // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4.90.0. This is not visible to the user
-               return array(4, 91, 9);
+               return array(4, 91, 10);
        }
 
        /**