Remove call-time pass by reference as it causes a compile time fatal error in PHP 5.4. See #20163.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20136 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
duck_ 2012-03-07 16:32:11 +00:00
parent 20f416f286
commit 55d5ed2be1
1 changed files with 1 additions and 1 deletions

View File

@ -459,7 +459,7 @@ class WP_Customize_Setting {
elseif ( empty( $keys ) ) // If there are no keys, we're replacing the root.
return $value;
$result = $this->multidimensional( &$root, $keys, true );
$result = $this->multidimensional( $root, $keys, true );
if ( isset( $result ) )
$result['node'][ $result['key'] ] = $value;