Home
last modified time | relevance | path

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

/dokuwiki/inc/
H A Dauth.php287 * @param bool $sticky Cookie should not expire
294 function auth_login($user, $pass, $sticky = false, $silent = false) argument
312 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
313 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
326 [$user, $sticky, $pass] = auth_getCookie();
348 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
350 return auth_login($user, $pass, $sticky, true);
1136 [/* user */, $sticky, /* pass */] = auth_getCookie();
1137 $pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true));
1138 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