mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 10:05:58 +00:00
fix auth_base referencing dbh which was not present
This commit is contained in:
@@ -1,5 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
class Auth_Base {
|
class Auth_Base {
|
||||||
|
private $dbh;
|
||||||
|
|
||||||
|
function __construct() {
|
||||||
|
$this->dbh = Db::get();
|
||||||
|
}
|
||||||
|
|
||||||
function check_password($owner_uid, $password) {
|
function check_password($owner_uid, $password) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user