From a0ed0d38d467a7ceb5e576e8b363b5ee1af05ab1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 17 Apr 2013 18:27:41 +0400 Subject: [PATCH] auth_remote: fix typo --- classes/auth/base.php | 6 ------ plugins/auth_remote/init.php | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/classes/auth/base.php b/classes/auth/base.php index c2a6bd70..102a1977 100644 --- a/classes/auth/base.php +++ b/classes/auth/base.php @@ -1,11 +1,5 @@ dbh = $dbh; - } - function check_password($owner_uid, $password) { return false; } diff --git a/plugins/auth_remote/init.php b/plugins/auth_remote/init.php index a87eea59..f0da1afc 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); } -- 2.39.5