]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix syntax errors in URL builder
authorEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 22:34:09 +0000 (18:34 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 22:34:09 +0000 (18:34 -0400)
darcs-hash:20080709223409-84dde-809bfe5eb294f24cb3a99faf6436e57ff054cd16.gz

lib/util.php

index c6b456a03522f1df6c9781df8e9565e7fffde0b8..91b9381ef8fc8747c20f4a5afb2a17d734f0dd2e 100644 (file)
@@ -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);
        }