diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-17 18:27:41 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-17 18:27:41 +0400 |
| commit | a0ed0d38d467a7ceb5e576e8b363b5ee1af05ab1 (patch) | |
| tree | 554402fc9878da512b2535c6a40155115b969364 /plugins/auth_remote | |
| parent | 57bac1bea99cdac24305c53272a48821e52a7c2e (diff) | |
auth_remote: fix typo
Diffstat (limited to 'plugins/auth_remote')
| -rw-r--r-- | plugins/auth_remote/init.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/auth_remote/init.php b/plugins/auth_remote/init.php index a87eea599..f0da1afc8 100644 --- a/plugins/auth_remote/init.php +++ b/plugins/auth_remote/init.php @@ -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); } |