Skip to content
Snippets Groups Projects
Commit c276e9e8 authored by Marcel Pennewiss's avatar Marcel Pennewiss
Browse files

Invalidate user session cache after profile data was changed

parent d5eb2a76
No related branches found
No related tags found
No related merge requests found
......@@ -1049,12 +1049,19 @@ function updateprofile() {
return false;
}
// update cookie and session with the changed data
if($changes['pass']) {
// update cookie and session with the changed data
list( /*user*/, $sticky, /*pass*/) = auth_getCookie();
$pass = auth_encrypt($changes['pass'], auth_cookiesalt(!$sticky, true));
auth_setCookie($INPUT->server->str('REMOTE_USER'), $pass, (bool) $sticky);
} else {
// make sure the session is writable
@session_start();
// invalidate session cache
$_SESSION[DOKU_COOKIE]['auth']['time'] = 0;
session_write_close();
}
return true;
}
......
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