fix auth_base referencing dbh which was not present

master
Andrew Dolgov 11 years ago
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…
Cancel
Save