fixed merge error

This commit is contained in:
Andreas Gohr 2019-07-14 22:08:22 +02:00
parent dbc189b29a
commit 42c62e557b
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ class auth_plugin_authplain extends DokuWiki_Auth_Plugin
{
$groups = [];
if ($this->users === null) $this->_loadUserData();
if ($this->users === null) $this->loadUserData();
foreach($this->users as $user => $info) {
$groups = array_merge($groups, array_diff($info['grps'], $groups));
}