Browse Source

Change length of mimetypes to 255, the maximum length according to RFC 4288

tags/v5.0.0alpha1
Michael Gapczynski 11 years ago
parent
commit
106541361c
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      db_structure.xml
  2. 1
    1
      lib/util.php

+ 1
- 1
db_structure.xml View File

@@ -114,7 +114,7 @@
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>64</length>
<length>255</length>
</field>

<index>

+ 1
- 1
lib/util.php View File

@@ -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);
}

/**

Loading…
Cancel
Save