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

@ -1,11 +1,5 @@
<?php
class Auth_Base {
protected $dbh;
function __construct($dbh) {
$this->dbh = $dbh;
}
function check_password($owner_uid, $password) {
return false;
}

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);
}