auth_remote: fix typo
This commit is contained in:
parent
57bac1bea9
commit
a0ed0d38d4
2 changed files with 2 additions and 8 deletions
|
@ -1,11 +1,5 @@
|
|||
<?php
|
||||
class Auth_Base {
|
||||
protected $dbh;
|
||||
|
||||
function __construct($dbh) {
|
||||
$this->dbh = $dbh;
|
||||
}
|
||||
|
||||
function check_password($owner_uid, $password) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue