summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-24 11:26:28 +0100
committerEvan Prodromou <evan@controlyourself.ca>2009-01-24 11:26:28 +0100
commitdb4271692a10f521c322581f3470c06d06ef18fb (patch)
tree41a4e6f4b826f5be2b13c84d094b1d82ebc68643 /lib
parent4e44b0b8d7ecf9da9acae4abeb634a4052afa4db (diff)
wrong action for groups
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index ede8db6b6..b5b194519 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);
}