summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-09 18:37:01 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-09 18:37:01 -0400
commit5d525893c3f5339194079cd653ecd8d7853ef9eb (patch)
tree369283fa21206a0b15563eafacfb5cb498c45c36 /lib/util.php
parentf20eca5187a0b31f2bbc6b797ae77e3723c2b1b6 (diff)
use smarter query builder
darcs-hash:20080709223701-84dde-a2bc25d65eeb70d24d4c598ef962e17062390fc4.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php
index 91b9381ef..36baab8aa 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -775,9 +775,9 @@ function common_fancy_url($action, $args=NULL) {
case 'imsettings':
return common_path('settings/im');
case 'peoplesearch':
- return common_path('search/people' . ($args) ? ('?' . implode('&', $args)) : '');
+ return common_path('search/people' . ($args) ? ('?' . http_build_query($args)) : '');
case 'noticesearch':
- return common_path('search/notice' . ($args) ? ('?' . implode('&', $args)) : '');
+ return common_path('search/notice' . ($args) ? ('?' . http_build_query($args)) : '');
default:
return common_simple_url($action, $args);
}