From f20eca5187a0b31f2bbc6b797ae77e3723c2b1b6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 9 Jul 2008 18:34:09 -0400 Subject: [PATCH] fix syntax errors in URL builder darcs-hash:20080709223409-84dde-809bfe5eb294f24cb3a99faf6436e57ff054cd16.gz --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index c6b456a035..91b9381ef8 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); }