From: Matthew Katz Date: Sat, 10 Apr 2010 22:36:26 +0000 (-0400) Subject: fixed so that login is only required for import and export of OPML, not for publish X-Git-Tag: 1.4.2~9 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a4234239568f14dbad890dd7eeb3208fe5922193;p=tt-rss.git fixed so that login is only required for import and export of OPML, not for publish --- diff --git a/opml.php b/opml.php index 0de5dd33..2e9f2368 100644 --- a/opml.php +++ b/opml.php @@ -11,9 +11,6 @@ $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); init_connection($link); - login_sequence($link); - - $owner_uid = $_SESSION["uid"]; function opml_export($link, $owner_uid, $hide_private_feeds=False) { header("Content-type: application/xml+opml"); @@ -92,6 +89,9 @@ if (!$op) $op = "Export"; if ($op == "Export") { + + login_sequence($link); + $owner_uid = $_SESSION["uid"]; return opml_export($link, $owner_uid); } if ($op == "publish"){ @@ -113,6 +113,9 @@ if ($op == "Import") { + login_sequence($link); + $owner_uid = $_SESSION["uid"]; + print "