Change length of mimetypes to 255, the maximum length according to RFC 4288
This commit is contained in:
parent
464dafd7d2
commit
106541361c
2 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@
|
|||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<length>64</length>
|
||||
<length>255</length>
|
||||
</field>
|
||||
|
||||
<index>
|
||||
|
|
|
@ -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…
Reference in a new issue