This commit is contained in:
Robin Millette
2009-05-18 17:18:57 -04:00
parent 5897dfa4c3
commit 0271859c24
7 changed files with 88 additions and 16 deletions

View File

@@ -114,7 +114,11 @@ class TagCloudSection extends Section
function tagUrl($tag)
{
return common_local_url('tag', array('tag' => $tag));
if ('showstream' === $this->out->trimmed('action')) {
return common_local_url('showstream', array('nickname' => $this->out->profile->nickname, 'tag' => $tag));
} else {
return common_local_url('tag', array('tag' => $tag));
}
}
function divId()