Browse Source

Fix accesslist when a user has an ID only containting 0-9

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v13.0.0beta2
Joas Schilling 6 years ago
parent
commit
3820d6883d
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/private/Share20/Manager.php

+ 1
- 1
lib/private/Share20/Manager.php View File

@@ -1390,7 +1390,7 @@ class Manager implements IManager {
foreach ($tmp as $k => $v) {
if (isset($al[$k])) {
if (is_array($al[$k])) {
$al[$k] = array_merge($al[$k], $v);
$al[$k] += $v;
} else {
$al[$k] = $al[$k] || $v;
}

Loading…
Cancel
Save