From db4271692a10f521c322581f3470c06d06ef18fb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 24 Jan 2009 11:26:28 +0100 Subject: [PATCH] wrong action for groups --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index ede8db6b69..b5b194519e 100644 --- a/lib/util.php +++ b/lib/util.php @@ -905,7 +905,7 @@ function common_fancy_url($action, $args=null) case 'usergroups': return common_path($args['nickname'].'/groups' . (($args) ? ('?' . http_build_query($args)) : '')); case 'groups': - return common_path('search/group' . (($args) ? ('?' . http_build_query($args)) : '')); + return common_path('group' . (($args) ? ('?' . http_build_query($args)) : '')); default: return common_simple_url($action, $args); }