diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-15 21:22:16 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-15 21:22:16 +0100 |
commit | a73ea134cd09af039e01e4f6ae7f455ecb76279e (patch) | |
tree | 24e813a4e279eb1b415b80297f31ec94aabc0471 /include/text.php | |
parent | e7a5aa7b9cbe0ff9a3840500c4e7eebf6896dc93 (diff) | |
download | volse-hubzilla-a73ea134cd09af039e01e4f6ae7f455ecb76279e.tar.gz volse-hubzilla-a73ea134cd09af039e01e4f6ae7f455ecb76279e.tar.bz2 volse-hubzilla-a73ea134cd09af039e01e4f6ae7f455ecb76279e.zip |
re-add spaces between tags
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php index 2d1bc4222..224ba17d0 100644 --- a/include/text.php +++ b/include/text.php @@ -1459,8 +1459,10 @@ function format_hashtags(&$item) { continue; if(strpos($item['body'], $t['url'])) continue; + if($s) + $s .= ' '; - $s .= '<span class="badge badge-pill badge-info"><i class="fa fa-hashtag"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span> '; + $s .= '<span class="badge badge-pill badge-info"><i class="fa fa-hashtag"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span>'; } } @@ -1480,8 +1482,9 @@ function format_mentions(&$item) { continue; if(strpos($item['body'], $t['url'])) continue; - - $s .= '<span class="badge badge-pill badge-success"><i class="fa fa-at"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span> '; + if($s) + $s .= ' '; + $s .= '<span class="badge badge-pill badge-success"><i class="fa fa-at"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span>'; } } |