diff options
author | Gerrit Uitslag <klapinklapin@gmail.com> | 2014-09-29 21:45:27 +0200 |
---|---|---|
committer | Gerrit Uitslag <klapinklapin@gmail.com> | 2014-09-29 21:45:27 +0200 |
commit | 59bc3b48fdffb76ee65a4b630be3ffa1f6c20c80 (patch) | |
tree | e87df15c5ca81556fd1925ad56ba404f664c890e /lib/plugins/acl/remote.php | |
parent | e0c26282a603881e8d2f839d94c28dbbfc57d71b (diff) | |
download | rpg-59bc3b48fdffb76ee65a4b630be3ffa1f6c20c80.tar.gz rpg-59bc3b48fdffb76ee65a4b630be3ffa1f6c20c80.tar.bz2 |
more scrutinizer issue improvements
Diffstat (limited to 'lib/plugins/acl/remote.php')
-rw-r--r-- | lib/plugins/acl/remote.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/plugins/acl/remote.php b/lib/plugins/acl/remote.php index 6d5201cf6..2fdc697db 100644 --- a/lib/plugins/acl/remote.php +++ b/lib/plugins/acl/remote.php @@ -18,11 +18,13 @@ class remote_plugin_acl extends DokuWiki_Remote_Plugin { } function addAcl($scope, $user, $level){ + /** @var admin_plugin_acl $apa */ $apa = plugin_load('admin', 'acl'); return $apa->_acl_add($scope, $user, $level); } function delAcl($scope, $user){ + /** @var admin_plugin_acl $apa */ $apa = plugin_load('admin', 'acl'); return $apa->_acl_del($scope, $user); } |