diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-11-23 21:00:29 -0500 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-11-23 21:00:29 -0500 |
commit | 62330b0f3dfad9e1061f6ceea9dc57261ba1ae06 (patch) | |
tree | c9639c5ba377f9078ceacabf5d1fa0889515461f /lib | |
parent | bb5437bd2d4ed4208030fd4f05b7548a69574444 (diff) |
fix tag link
darcs-hash:20081124020029-84dde-2778ef961b5f900c7abe2cb18550f5e013b5579a.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gallery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gallery.php b/lib/gallery.php index 841076819..5356574d7 100644 --- a/lib/gallery.php +++ b/lib/gallery.php @@ -84,7 +84,7 @@ class GalleryAction extends Action { $tags = $profile->getAllTags(); $content = array(); foreach ($tags as $t) { - $content[common_local_url($this->trimmed('action'), array('tag' => $t))] = $t; + $content[$t] = $t; } if ($tags) { common_element('a', array('href' => common_local_url($this->trimmed('action'), |