allow permissions.user to be null as suggested by @butonic

This commit is contained in:
Georg Ehrke 2013-08-07 11:51:08 +02:00
parent 91bd4dd67b
commit dcc92445a0
2 changed files with 2 additions and 2 deletions

View File

@ -383,7 +383,7 @@
<name>user</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<notnull>false</notnull>
<length>64</length>
</field>

View File

@ -78,7 +78,7 @@ class OC_Util {
public static function getVersion() {
// hint: We only can count up. Reset minor/patchlevel when
// updating major/minor version number.
return array(5, 80, 05);
return array(5, 80, 06);
}
/**