summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-08-13 08:50:28 +0100
committerAndrew Dolgov <[email protected]>2008-08-13 08:50:28 +0100
commit338ce36c218220f335546da724deca5f215720d9 (patch)
tree77f47edf39524ce742b731e2b770d09cd587b566 /functions.php
parent074bf20c7fadaa7c2b9bf133110e1025cc2655d2 (diff)
fix break when calling catchupFeedInGroup() in grouped vfeed mode on a feed with a single quote in a name
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index f2800552f..8367dcaa1 100644
--- a/functions.php
+++ b/functions.php
@@ -5007,7 +5007,7 @@
$cur_feed_title = htmlspecialchars($cur_feed_title);
- $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id, \"$cur_feed_title\");' href='#'>mark as read</a>)";
+ $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>mark as read</a>)";
print "<tr class='feedTitle'><td colspan='7'>".
"<div style=\"float : right\">$feed_icon_img</div>".
@@ -5088,7 +5088,7 @@
$cur_feed_title = htmlspecialchars($cur_feed_title);
- $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id, \"$cur_feed_title\");' href='#'>mark as read</a>)";
+ $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>mark as read</a>)";
$has_feed_icon = is_file(ICONS_DIR . "/$feed_id.ico");