fix auth_base referencing dbh which was not present
This commit is contained in:
parent
073672ccd5
commit
8cb5c64d62
|
@ -1,5 +1,11 @@
|
|||
<?php
|
||||
class Auth_Base {
|
||||
private $dbh;
|
||||
|
||||
function __construct() {
|
||||
$this->dbh = Db::get();
|
||||
}
|
||||
|
||||
function check_password($owner_uid, $password) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue