summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-06-29 14:54:22 +0400
committerAndrew Dolgov <[email protected]>2010-06-29 14:54:22 +0400
commit442f326bc6230fbe6f8ca1dbfb774978e1b92bd3 (patch)
treecf3ae2eeb58123cbb6287168bad777af4f164bbe /opml.php
parent00a35bb6636b2aaad54e49f6c5c289ff751683fb (diff)
do not show settings in published opml
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php29
1 files changed, 16 insertions, 13 deletions
diff --git a/opml.php b/opml.php
index d3a352fa2..4524dc335 100644
--- 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 {
@@ -94,23 +94,25 @@
# 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>";
}
@@ -127,7 +129,8 @@
$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
@@ -138,7 +141,7 @@
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>";
}