diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-05-31 21:37:14 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-05-31 21:37:14 +0400 |
| commit | 67f4fe178099de9744d208ed818f9b6728239f33 (patch) | |
| tree | 85e595e4b8a7aa1afb9e2e0695443f33f0660190 | |
| parent | 37cc6df067d48b06fd7e621fb817998c564bdeec (diff) | |
format_tags_string: fix typo
| -rw-r--r-- | include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php index 32ec8815f..f7d2e9083 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3412,7 +3412,7 @@ $maxtags = min(5, count($tags)); 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('".$tags[$i]."')\">" . $tags[$i] . "</a>, "; } $tags_str = mb_substr($tags_str, 0, mb_strlen($tags_str)-2); |