diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 18:34:09 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 18:34:09 -0400 |
commit | f20eca5187a0b31f2bbc6b797ae77e3723c2b1b6 (patch) | |
tree | 8a2c8bfca94a8da67de714b59ac7e752b3bbe40f /lib | |
parent | 62747030ca454bd059482662be914c8ac907d193 (diff) |
fix syntax errors in URL builder
darcs-hash:20080709223409-84dde-809bfe5eb294f24cb3a99faf6436e57ff054cd16.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index c6b456a03..91b9381ef 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) ? ('?' . implode('&', $args)) : ''); case 'noticesearch': - return common_path('search/notice' . (($args) ? '?' . implode('&', $args)) : ''); + return common_path('search/notice' . ($args) ? ('?' . implode('&', $args)) : ''); default: return common_simple_url($action, $args); } |