summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-27 18:11:21 +0400
committerAndrew Dolgov <[email protected]>2011-12-27 18:11:21 +0400
commitcfb665c01f3b0303515658f5569ac472a0970e21 (patch)
tree6dad437136b9aadb2c8f9c343ea64c3a545f7500 /opml.php
parentf59928d7a85645b5813181409847fa41d1b6b937 (diff)
misc export tweaks
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/opml.php b/opml.php
index 103ec0ba6..2190b5652 100644
--- a/opml.php
+++ b/opml.php
@@ -315,7 +315,7 @@
print "</outline>";
- print "<outline title=\"tt-rss-labels\">";
+ print "<outline title=\"tt-rss-labels\" schema-version=\"".SCHEMA_VERSION."\">";
$result = db_query($link, "SELECT * FROM ttrss_labels2 WHERE
owner_uid = " . $_SESSION['uid']);
@@ -331,7 +331,7 @@
print "</outline>";
- print "<outline title=\"tt-rss-filters\">";
+ print "<outline title=\"tt-rss-filters\" schema-version=\"".SCHEMA_VERSION."\">";
$result = db_query($link, "SELECT filter_type,
reg_exp,
@@ -341,7 +341,7 @@
inverse,
filter_param,
cat_filter,
- ttrss_feeds.title AS feed_title,
+ ttrss_feeds.feed_url AS feed_url,
ttrss_feed_categories.title AS cat_title
FROM ttrss_filters
LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)