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

Fix XML-RPC login method FS#2324

The login wasn't able to modify the session as it was already closed
earlier.

This patch also executes the correct event when logins via XMLRPC are
done.
parent a533b440
No related branches found
No related tags found
No related merge requests found
......@@ -858,11 +858,22 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer {
global $auth;
if(!$conf['useacl']) return 0;
if(!$auth) return 0;
@session_start(); // reopen session for login
if($auth->canDo('external')){
return $auth->trustExternal($user,$pass,false);
$ok = $auth->trustExternal($user,$pass,false);
}else{
return auth_login($user,$pass,false,true);
$evdata = array(
'user' => $user,
'password' => $pass,
'sticky' => false,
'silent' => true,
);
$ok = trigger_event('AUTH_LOGIN_CHECK', $evdata, 'auth_login_wrapper');
}
session_write_close(); // we're done with the session
return $ok;
}
......
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