]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
try some scoping
authorEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 22:38:03 +0000 (18:38 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 22:38:03 +0000 (18:38 -0400)
darcs-hash:20080709223803-84dde-c04d91be4d0a39d173297633cf5cad464ea52c4e.gz

lib/util.php

index 36baab8aa893145fcb9eb4feb7856480391993a5..d86cc5e4c0330a70ba8090750569dfa933acbb47 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) ? ('?' . 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);
        }