summaryrefslogtreecommitdiff
path: root/classes/feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-01 17:21:26 +0300
committerAndrew Dolgov <[email protected]>2018-12-01 17:21:26 +0300
commitd86ddbc635376231ba2e0a70c04f526cb9fedd58 (patch)
tree6bc975b9c984fe815962e5d1afcde5fba1c816c8 /classes/feeds.php
parent049a37aa0e7d37cafd979e7d470c7649700b5010 (diff)
further objectification of JS code
Diffstat (limited to 'classes/feeds.php')
-rwxr-xr-xclasses/feeds.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 93e44e3bb..63366fd0d 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -388,7 +388,7 @@ class Feeds extends Handler_Protected {
$vgroup_last_feed = $feed_id;
- $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
+ $vf_catchup_link = "<a class='catchup' onclick='Feeds.catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
$reply['content'] .= "<div data-feed-id='$feed_id' class='feed-titl'>".
"<div style='float : right'>$feed_icon_img</div>".
@@ -481,7 +481,7 @@ class Feeds extends Handler_Protected {
$vgroup_last_feed = $feed_id;
- $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
+ $vf_catchup_link = "<a class='catchup' onclick='Feeds.catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
$feed_icon_src = Feeds::getFeedIcon($feed_id);
$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"$feed_icon_src\">";