From: Evan Prodromou Date: Wed, 9 Jul 2008 22:38:03 +0000 (-0400) Subject: try some scoping X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f09382f9a49fb8b0c9b3e16eb9e21e4f1bfa1648;p=quix0rs-gnu-social.git try some scoping darcs-hash:20080709223803-84dde-c04d91be4d0a39d173297633cf5cad464ea52c4e.gz --- diff --git a/lib/util.php b/lib/util.php index 36baab8aa8..d86cc5e4c0 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) ? ('?' . http_build_query($args)) : ''); + return common_path('search/people' . (($args) ? ('?' . http_build_query($args)) : '')); case 'noticesearch': - return common_path('search/notice' . ($args) ? ('?' . http_build_query($args)) : ''); + return common_path('search/notice' . (($args) ? ('?' . http_build_query($args)) : '')); default: return common_simple_url($action, $args); }