fix missing DB object when instantiated to import opml

This commit is contained in:
Andrew Dolgov 2013-04-18 23:19:14 +04:00
parent 7f1113a56a
commit 1f29443530
5 changed files with 6 additions and 6 deletions

View file

@ -120,7 +120,7 @@
if ($override) {
$handler = $override;
} else {
$handler = new $op(Db::get(), $_REQUEST);
$handler = new $op($_REQUEST);
}
if ($handler && implements_interface($handler, 'IHandler')) {

View file

@ -3,8 +3,8 @@ class Handler implements IHandler {
protected $dbh;
protected $args;
function __construct($dbh, $args) {
$this->dbh = $dbh;
function __construct($args) {
$this->dbh = Db::get();
$this->args = $args;
}

View file

@ -42,7 +42,7 @@
if ($override) {
$handler = $override;
} else {
$handler = new Handler_Public(Db::get(), $_REQUEST);
$handler = new Handler_Public($_REQUEST);
}
if (implements_interface($handler, "IHandler") && $handler->before($method)) {