1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 03:15:56 +00:00

fix auth_base referencing dbh which was not present

This commit is contained in:
Andrew Dolgov
2013-04-18 15:36:54 +04:00
parent 073672ccd5
commit 8cb5c64d62

View File

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