diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-18 23:19:14 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-18 23:19:14 +0400 |
| commit | 1f294435307ef6cbbf3f35a22af9bf92131338ed (patch) | |
| tree | 22a1004e262cfe9f0694d71a3418db4fb9a78d21 /opml.php | |
| parent | 7f1113a56ad8e66ce3dd9886b4b11dfc30573c7f (diff) | |
fix missing DB object when instantiated to import opml
Diffstat (limited to 'opml.php')
| -rw-r--r-- | opml.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |