From 6af0534ea7fd8247478444fc33ba83ce4b1ea161 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 21 Nov 2008 10:42:18 -0500 Subject: fix tag links in subs darcs-hash:20081121154218-84dde-3c805fe52692950edd397ac184f68c09095419a7.gz --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index b8e482eef..18e65be8b 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1051,9 +1051,9 @@ function common_fancy_url($action, $args=NULL) { } $params = http_build_query($args); if ($params) { - return common_path($nickname.'/'.$action . (($tag) ? '/' . tag : '') . '?' . $params); + return common_path($nickname.'/'.$action . (($tag) ? '/' . $tag : '') . '?' . $params); } else { - return common_path($nickname.'/'.$action . (($tag) ? '/' . tag : '')); + return common_path($nickname.'/'.$action . (($tag) ? '/' . $tag : '')); } case 'allrss': return common_path($args['nickname'].'/all/rss'); -- cgit v1.2.3-54-g00ecf