Home
last modified time | relevance | path

Searched refs:cleanUser (Results 1 – 9 of 9) sorted by path

/dokuwiki/inc/Action/
H A DResendpwd.php146 $user = trim($auth->cleanUser($INPUT->post->str('login')));
/dokuwiki/inc/Extension/
H A DAuthPlugin.php404 public function cleanUser($user)
406 public function cleanUser($user) global() function in dokuwiki\\Extension\\AuthPlugin
/dokuwiki/inc/Remote/
H A DApiCore.php
/dokuwiki/inc/
H A Dauth.php94 $INPUT->set('u', $auth->cleanUser(stripctl($INPUT->str('u'))));
629 $user = $auth->cleanUser($user);
646 $member = $auth->cleanUser($member);
736 $user = auth_nameencode($auth->cleanUser($user));
938 $user = $auth->cleanUser($user);
979 $login = trim($auth->cleanUser($INPUT->post->str('login')));
1266 $user = trim($auth->cleanUser($INPUT->post->str('login')));
/dokuwiki/lib/plugins/acl/
H A Dadmin.php94 $this->who = $auth->cleanUser($this->who);
155 $who = $auth->cleanUser($who);
/dokuwiki/lib/plugins/authad/
H A Daction.php43 $usr = $auth->cleanUser($event->data['user']);
77 $usr = $auth->cleanUser($INPUT->str('u'));
H A Dauth.php116 $INPUT->server->set('REMOTE_USER', $this->cleanUser($INPUT->server->str('REMOTE_USER')));
324 public function cleanUser($user)
316 public function cleanUser($user) global() function in auth_plugin_authad
/dokuwiki/lib/plugins/authplain/
H A Dauth.php361 public function cleanUser($user)
354 public function cleanUser($user) global() function in auth_plugin_authplain
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php754 $user = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $param));
782 $olduser = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $INPUT->str('userid_old')));
900 * @param bool $clean whether the cleanUser method of the authentication backend is applied
910 $user[0] = ($clean) ? $auth->cleanUser($INPUT->str('userid')) : $INPUT->str('userid');