diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 22:38:10 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 22:38:10 +0000 |
commit | d6879bfe0c188b06f7b7730bb64af469d5c6e461 (patch) | |
tree | 3c85fbb8093001d5272a04cb4d1bf7c1751d061b /lib/profilelist.php | |
parent | 04d498784ff1892607a3aee65d76104192fe4af2 (diff) |
Debug some of the subscriptions+tags problems
Diffstat (limited to 'lib/profilelist.php')
-rw-r--r-- | lib/profilelist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/profilelist.php b/lib/profilelist.php index a510c518c..499d74f7b 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -169,9 +169,9 @@ class ProfileList extends Widget $this->out->elementStart('ul', 'tags xoxo'); foreach ($tags as $tag) { $this->out->elementStart('li'); - $this->element('span', 'mark_hash', '#'); + $this->out->element('span', 'mark_hash', '#'); $this->out->element('a', array('rel' => 'tag', - 'href' => common_local_url($this->action, + 'href' => common_local_url($this->action->trimmed('action'), array('nickname' => $this->owner->nickname, 'tag' => $tag))), $tag); |