allow permissions.user to be null as suggested by @butonic
This commit is contained in:
parent
91bd4dd67b
commit
dcc92445a0
|
@ -383,7 +383,7 @@
|
|||
<name>user</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>64</length>
|
||||
</field>
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue