In wp-includes/class-wp-customize-setting.php, break is unreachable after return.

See #27882.

Built from https://develop.svn.wordpress.org/trunk@28319


git-svn-id: http://core.svn.wordpress.org/trunk@28147 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-05-06 18:34:14 +00:00
parent 0a4af6d45c
commit 73b102bd84

View File

@ -232,10 +232,10 @@ class WP_Customize_Setting {
switch( $this->type ) {
case 'theme_mod' :
return $this->_update_theme_mod( $value );
break;
case 'option' :
return $this->_update_option( $value );
break;
default :
/**