mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
allow permissions.user to be null as suggested by @butonic
This commit is contained in:
parent
91bd4dd67b
commit
dcc92445a0
2 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue