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

This commit is contained in:
Michael Gapczynski 2013-01-09 22:57:42 -05:00
parent 464dafd7d2
commit 106541361c
2 changed files with 2 additions and 2 deletions

View File

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

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);
}
/**