Home
last modified time | relevance | path

Searched refs:sticky (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/inc/
H A Dauth.php289 * @param bool $sticky Cookie should not expire
296 function auth_login($user, $pass, $sticky = false, $silent = false) argument
314 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
315 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
328 [$user, $sticky, $pass] = auth_getCookie();
351 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
353 return auth_login($user, $pass, $sticky, true);
1139 [/* user */, $sticky, /* pass */] = auth_getCookie();
1140 $pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true));
1141 auth_setCookie($INPUT->server->str('REMOTE_USER'), $pass, (bool) $sticky);
[all …]
/dokuwiki/inc/Extension/
H A DAuthPlugin.php191 * @param bool $sticky Cookie should not expire
195 public function trustExternal($user, $pass, $sticky = false) argument