]> git.wh0rd.org - tt-rss.git/commitdiff
do not show settings in published opml
authorAndrew Dolgov <fox@bah.org.ru>
Tue, 29 Jun 2010 10:54:22 +0000 (14:54 +0400)
committerAndrew Dolgov <fox@bah.org.ru>
Tue, 29 Jun 2010 10:54:22 +0000 (14:54 +0400)
opml.php

index d3a352fa2dbbd62a52c73dfdc374c5a6b61af02b..4524dc3357f976203a97ab63eb38a06532450d7b 100644 (file)
--- a/opml.php
+++ b/opml.php
@@ -12,7 +12,7 @@
 
        init_connection($link);
 
-       function opml_export($link, $owner_uid, $hide_private_feeds=False) {
+       function opml_export($link, $owner_uid, $hide_private_feeds=false, $include_settings=true) {
                if (!$_REQUEST["debug"]) {
                        header("Content-type: application/xml+opml");
                } else {
 
                # export tt-rss settings
 
-               print "<outline title=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
+               if ($include_settings) {
+                       print "<outline title=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
 
-               $result = db_query($link, "SELECT pref_name, value FROM ttrss_user_prefs WHERE
-                  profile IS NULL AND owner_uid = " . $_SESSION["uid"]);
+                       $result = db_query($link, "SELECT pref_name, value FROM ttrss_user_prefs WHERE
+                          profile IS NULL AND owner_uid = " . $_SESSION["uid"]);
 
-               while ($line = db_fetch_assoc($result)) {
+                       while ($line = db_fetch_assoc($result)) {
 
-                       $name = $line["pref_name"];
-                       $value = htmlspecialchars($line["value"]);
+                               $name = $line["pref_name"];
+                               $value = htmlspecialchars($line["value"]);
                
-                       print "<outline pref-name=\"$name\" value=\"$value\">";
+                               print "<outline pref-name=\"$name\" value=\"$value\">";
 
-                       print "</outline>";
+                               print "</outline>";
 
-               }               
+                       }               
 
-               print "</outline>";
+                       print "</outline>";
+               }
 
                print "</body></opml>";
        }
                $owner_uid = $_SESSION["uid"];
                return opml_export($link, $owner_uid);
        }
-        if ($op == "publish"){
+       if ($op == "publish"){
                $key = db_escape_string($_REQUEST["key"]);
 
                $result = db_query($link, "SELECT login, owner_uid 
 
                if (db_num_rows($result) == 1) {
                        $owner = db_fetch_result($result, 0, "owner_uid");
-                       return opml_export($link, $owner, True);
+                       return opml_export($link, $owner, true, false);
                } else {
                        print "<error>User not found</error>";
                }