Skip to content
Snippets Groups Projects
Commit a154806f authored by Andreas Gohr's avatar Andreas Gohr
Browse files

authad: capabilities depend on userdomain specific config

parent 8257d713
No related branches found
No related tags found
No related merge requests found
......@@ -1352,6 +1352,8 @@ function html_updateprofile(){
/** @var auth_basic $auth */
global $auth;
var_dump($auth);
print p_locale_xhtml('updateprofile');
$fullname = $INPUT->post->str('fullname', $INFO['userinfo']['name'], true);
......
......@@ -110,6 +110,19 @@ class auth_plugin_authad extends DokuWiki_Auth_Plugin {
$this->cando['modMail'] = true;
}
/**
* Load domain config on capability check
*
* @param string $cap
* @return bool
*/
public function canDo($cap) {
//capabilities depend on config, which may change depending on domain
$domain = $this->_userDomain($_SERVER['REMOTE_USER']);
$this->_loadServerConfig($domain);
return parent::canDo($cap);
}
/**
* Check user+password [required auth function]
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment