diff options
author | Evan Prodromou <evan@status.net> | 2009-12-23 15:53:55 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-23 15:53:55 -0800 |
commit | 3e9cc76da5b3c2fbf1898a357d1cfb58c7f66d85 (patch) | |
tree | b01debd5ee66a31222580944f151b7b663f83546 | |
parent | da5db060e8c2322294e7bc0866078611cc290790 (diff) | |
parent | c0f444f564be0c14a6cd23c4241c6f9cd4331518 (diff) |
Merge branch 'master' into 0.9.x
-rw-r--r-- | plugins/GeonamesPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php index 0d12c1cf7..df99c7849 100644 --- a/plugins/GeonamesPlugin.php +++ b/plugins/GeonamesPlugin.php @@ -448,7 +448,7 @@ class GeonamesPlugin extends Plugin $params['token'] = $this->token; } - $str = http_build_query($params); + $str = http_build_query($params, null, '&'); return 'http://'.$this->host.'/'.$method.'?'.$str; } |