]> source.dussan.org Git - nextcloud-server.git/commitdiff
Change length of mimetypes to 255, the maximum length according to RFC 4288
authorMichael Gapczynski <mtgap@owncloud.com>
Thu, 10 Jan 2013 03:57:42 +0000 (22:57 -0500)
committerMichael Gapczynski <mtgap@owncloud.com>
Thu, 10 Jan 2013 03:57:42 +0000 (22:57 -0500)
db_structure.xml
lib/util.php

index 3022983473b8656d71376be85192c3272551ba6b..7b6829aa30192c85f0ef43054ac6e99960b54d5e 100644 (file)
                                <type>text</type>
                                <default></default>
                                <notnull>true</notnull>
-                               <length>64</length>
+                               <length>255</length>
                        </field>
 
                        <index>
index 93c0d0f26d887304d4484317b3e095a2adb06a04..e814a3a32df45d03599dfc1edc69e9b677808b5a 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,05);
+               return array(4,91,06);
        }
 
        /**