summaryrefslogtreecommitdiff
path: root/classes/opml.php
diff options
context:
space:
mode:
authorJordi De Groof <[email protected]>2013-08-16 19:19:36 +0200
committerJordi De Groof <[email protected]>2013-08-16 19:19:36 +0200
commit631c06760190b7e207a8a16bb76517f7f308dc68 (patch)
treee2fa701e425be2080f7f125892f7510191bdf1ba /classes/opml.php
parent6b74f725a3beb9fb2340a4eeb1fe4b0c0dc8caeb (diff)
Include both title and text attributes
See http://feedvalidator.org/docs/warning/MissingTitleAttr.html
Diffstat (limited to 'classes/opml.php')
-rw-r--r--classes/opml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/opml.php b/classes/opml.php
index 0a64272a3..cac82f15d 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -97,7 +97,7 @@ class Opml extends Handler_Protected {
$html_url_qpart = "";
}
- $out .= "<outline type=\"rss\" text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
+ $out .= "<outline type=\"rss\" text=\"$title\" title=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
}
if ($cat_title) $out .= "</outline>\n";