summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-08-13 09:51:39 +0300
committerAndrew Dolgov <[email protected]>2015-08-13 09:51:39 +0300
commitdcbe36b2a26965b1280daed89cba6db2085cabfb (patch)
tree0f9f21bce75c63219648564002c28b95d484e7d1 /include
parentecbd467e642f99e135081fb3612552aa3bc04ac0 (diff)
fix some remaining old-style viewfeed() calls
Diffstat (limited to 'include')
-rw-r--r--include/functions2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions2.php b/include/functions2.php
index 19012c8e2..9bbfc7b22 100644
--- a/include/functions2.php
+++ b/include/functions2.php
@@ -1618,7 +1618,7 @@
$tags_str = "";
for ($i = 0; $i < $maxtags; $i++) {
- $tags_str .= "<a class=\"tag\" href=\"#\" onclick=\"viewfeed('".$tags[$i]."')\">" . $tags[$i] . "</a>, ";
+ $tags_str .= "<a class=\"tag\" href=\"#\" onclick=\"viewfeed({feed:'".$tags[$i]."'})\">" . $tags[$i] . "</a>, ";
}
$tags_str = mb_substr($tags_str, 0, mb_strlen($tags_str)-2);