summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-18 23:19:14 +0400
committerAndrew Dolgov <[email protected]>2013-04-18 23:19:14 +0400
commit1f294435307ef6cbbf3f35a22af9bf92131338ed (patch)
tree22a1004e262cfe9f0694d71a3418db4fb9a78d21 /backend.php
parent7f1113a56ad8e66ce3dd9886b4b11dfc30573c7f (diff)
fix missing DB object when instantiated to import opml
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index c69d6d98b..84abc9730 100644
--- a/backend.php
+++ b/backend.php
@@ -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')) {