1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:35:57 +00:00

auth_remote: fix typo

This commit is contained in:
Andrew Dolgov
2013-04-17 18:27:41 +04:00
parent 57bac1bea9
commit a0ed0d38d4
2 changed files with 2 additions and 8 deletions

View File

@@ -11,9 +11,9 @@ class Auth_Remote extends Plugin implements IAuthModule {
true);
}
function init($dbh, host) {
function init($host) {
$this->host = $host;
$this->base = new Auth_Base($dbh);
$this->base = new Auth_Base();
$host->add_hook($host::HOOK_AUTH_USER, $this);
}