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