summaryrefslogtreecommitdiff
path: root/opml.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 /opml.php
parent7f1113a56ad8e66ce3dd9886b4b11dfc30573c7f (diff)
fix missing DB object when instantiated to import opml
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/opml.php b/opml.php
index b93221614..af3694051 100644
--- a/opml.php
+++ b/opml.php
@@ -24,7 +24,7 @@
if (db_num_rows($result) == 1) {
$owner_uid = db_fetch_result($result, 0, "owner_uid");
- $opml = new Opml( $_REQUEST);
+ $opml = new Opml($_REQUEST);
$opml->opml_export("", $owner_uid, true, false);
} else {