wrong param order to strpos()
This commit is contained in:
parent
691c88bce8
commit
7214db14fe
|
@ -192,7 +192,7 @@ class HubSub extends Memcached_DataObject
|
||||||
|
|
||||||
// Any existing query string parameters must be preserved
|
// Any existing query string parameters must be preserved
|
||||||
$url = $this->callback;
|
$url = $this->callback;
|
||||||
if (strpos('?', $url) !== false) {
|
if (strpos($url, '?') !== false) {
|
||||||
$url .= '&';
|
$url .= '&';
|
||||||
} else {
|
} else {
|
||||||
$url .= '?';
|
$url .= '?';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user