]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
use smarter query builder
authorEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 22:37:01 +0000 (18:37 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 22:37:01 +0000 (18:37 -0400)
darcs-hash:20080709223701-84dde-a2bc25d65eeb70d24d4c598ef962e17062390fc4.gz

lib/util.php

index 91b9381ef8fc8747c20f4a5afb2a17d734f0dd2e..36baab8aa893145fcb9eb4feb7856480391993a5 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) ? ('?' . http_build_query($args)) : '');
         case 'noticesearch':
-               return common_path('search/notice' . ($args) ? ('?' . implode('&', $args)) : '');
+               return common_path('search/notice' . ($args) ? ('?' . http_build_query($args)) : '');
         default:
                return common_simple_url($action, $args);
        }