Don't discard non-default args in wp_parse_args(). see #4237
git-svn-id: https://develop.svn.wordpress.org/trunk@5428 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5168e22236
commit
222bb819b7
|
@ -1500,11 +1500,7 @@ function wp_parse_args( $args, $defaults = '' ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( is_array( $defaults ) ) {
|
if ( is_array( $defaults ) ) {
|
||||||
extract( $defaults );
|
return array_merge( $defaults, $r );
|
||||||
extract( $r );
|
|
||||||
// Note: this only returns the variables that were in $defaults
|
|
||||||
// to begin with. All other variables are discarded.
|
|
||||||
return compact( array_keys( $defaults ) );
|
|
||||||
} else {
|
} else {
|
||||||
return $r;
|
return $r;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue