mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 18:35:57 +00:00
fix some missing constructor parameters
This commit is contained in:
@@ -11,9 +11,9 @@ class Auth_Remote extends Plugin implements IAuthModule {
|
||||
true);
|
||||
}
|
||||
|
||||
function init($host) {
|
||||
function init($dbh, host) {
|
||||
$this->host = $host;
|
||||
$this->base = new Auth_Base();
|
||||
$this->base = new Auth_Base($dbh);
|
||||
|
||||
$host->add_hook($host::HOOK_AUTH_USER, $this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user