wrong param order to strpos()

This commit is contained in:
James Walker 2010-03-09 01:24:21 -05:00
parent 691c88bce8
commit 7214db14fe
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ class HubSub extends Memcached_DataObject
// Any existing query string parameters must be preserved
$url = $this->callback;
if (strpos('?', $url) !== false) {
if (strpos($url, '?') !== false) {
$url .= '&';
} else {
$url .= '?';