Don't cast to string if empty. Props donncha. fixes #3979
git-svn-id: https://develop.svn.wordpress.org/trunk@5051 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
cb973fe273
commit
d4007dfa64
@ -149,7 +149,8 @@ class WP {
|
||||
elseif (!empty($perma_query_vars[$wpvar]))
|
||||
$this->query_vars[$wpvar] = $perma_query_vars[$wpvar];
|
||||
|
||||
$this->query_vars[$wpvar] = (string) $this->query_vars[$wpvar];
|
||||
if ( !empty( $this->query_vars[$wpvar] ) )
|
||||
$this->query_vars[$wpvar] = (string) $this->query_vars[$wpvar];
|
||||
}
|
||||
|
||||
foreach ($this->private_query_vars as $var) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user