From: Andrew Dolgov Date: Fri, 31 May 2013 17:37:14 +0000 (+0400) Subject: format_tags_string: fix typo X-Git-Tag: 1.8~39 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=67f4fe178099de9744d208ed818f9b6728239f33;p=tt-rss.git format_tags_string: fix typo --- diff --git a/include/functions.php b/include/functions.php index 32ec8815..f7d2e908 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 .= "" . $tags[$i] . ", "; + $tags_str .= "" . $tags[$i] . ", "; } $tags_str = mb_substr($tags_str, 0, mb_strlen($tags_str)-2);