add_query_arg() dropped the passed in query string if the string did not contain any path elements.
git-svn-id: https://develop.svn.wordpress.org/trunk@2506 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
02ef551922
commit
db62c48897
@ -1908,7 +1908,11 @@ function add_query_arg() {
|
||||
else if (strstr($uri, '/')) {
|
||||
$base = $uri . '?';
|
||||
$query = '';
|
||||
} else {
|
||||
$base = '';
|
||||
$query = $uri;
|
||||
}
|
||||
|
||||
parse_str($query, $qs);
|
||||
if (is_array(func_get_arg(0))) {
|
||||
$kayvees = func_get_arg(0);
|
||||
|
Loading…
Reference in New Issue
Block a user