From: Andrew Dolgov Date: Wed, 17 Apr 2013 14:27:41 +0000 (+0400) Subject: auth_remote: fix typo X-Git-Tag: 1.7.9~25^2~167 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a0ed0d38d467a7ceb5e576e8b363b5ee1af05ab1;p=tt-rss.git auth_remote: fix typo --- 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); }