Set the current user on API calls

This commit is contained in:
Evan Prodromou 2011-05-25 14:01:22 -04:00
parent a838891c0e
commit d7a16929b9
1 changed files with 4 additions and 1 deletions

View File

@ -204,9 +204,12 @@ class ApiAuthAction extends ApiAction
}
}
$this->auth_user = $user;
// FIXME: setting the value returned by common_current_user()
// There should probably be a better method for this. common_set_user()
// does lots of session stuff.
global $_cur;
$_cur = $this->auth_user;
Event::handle('EndSetApiUser', array($user));
Event::handle('EndSetApiUser', array($user));
}
$msg = "API OAuth authentication for user '%s' (id: %d) on behalf of " .