Make WordPress Core

Ticket #20163: class-wp-customize-setting_pass-by-reference.patch

File class-wp-customize-setting_pass-by-reference.patch, 135 bytes (added by HerbMillerJW, 13 years ago)

Corrects the one appearance of calling a function by reference in class-wp-customize-setting.php

Line 
1451c451
2<               $result = $this->multidimensional( &$root, $keys, true );
3---
4>               $result = $this->multidimensional( $root, $keys, true );