In _WP_Editors::editor_settings(), $str1 and $str2 don't need to be initialized empty.

See #30224.

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


git-svn-id: http://core.svn.wordpress.org/trunk@30173 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-11-01 23:22:22 +00:00
parent 303d01869c
commit 783f36f855
2 changed files with 2 additions and 2 deletions

View File

@ -418,7 +418,7 @@ final class _WP_Editors {
$url = set_url_scheme( $url );
$mce_external_plugins[ $name ] = $url;
$plugurl = dirname( $url );
$strings = $str1 = $str2 = '';
$strings = '';
// Try to load langs/[locale].js and langs/[locale]_dlg.js
if ( ! in_array( $name, $loaded_langs, true ) ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30172';
$wp_version = '4.1-alpha-30173';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.