From: Meitar Moscovitz Date: Tue, 17 Feb 2009 07:37:02 +0000 (+1100) Subject: Fixes ticket:1053; removes spacing between hash and tag on profile page. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4327ae19d49384ca2f4b65b04926fb2fbea7d28d;p=quix0rs-gnu-social.git Fixes ticket:1053; removes spacing between hash and tag on profile page. --- diff --git a/actions/showstream.php b/actions/showstream.php index c736c99b5d..65482167e1 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -292,11 +292,11 @@ class ShowstreamAction extends Action $this->elementStart('ul', 'tags xoxo'); foreach ($tags as $tag) { $this->elementStart('li'); - $this->element('span', 'mark_hash', '#'); - $this->element('a', array('rel' => 'tag', - 'href' => common_local_url('peopletag', - array('tag' => $tag))), - $tag); + // Avoid space by using raw output. + $pt = '#'; + $this->raw($pt); $this->elementEnd('li'); } $this->elementEnd('ul');