Replace a second instance of `<code>` in translatable string left in [35440].

Props ramiy.
See #34498.
Built from https://develop.svn.wordpress.org/trunk@35445


git-svn-id: http://core.svn.wordpress.org/trunk@35409 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-10-30 01:56:25 +00:00
parent 2920285225
commit 746ba4c9c4
2 changed files with 5 additions and 4 deletions

View File

@ -529,9 +529,10 @@ class WP_Plugins_List_Table extends WP_List_Table {
} else { } else {
$is_active = false; $is_active = false;
$description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="error-message">' . __( 'Inactive:' ) . '</span></strong> ' . $description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="error-message">' . __( 'Inactive:' ) . '</span></strong> ' .
/* translators: %s: drop-in constant name */ /* translators: 1: drop-in constant name, 2: wp-config.php */
sprintf( __( 'Requires %s in <code>wp-config.php</code>.' ), sprintf( __( 'Requires %1$s in %2$s file.' ),
"<code>define('" . $dropins[ $plugin_file ][1] . "', true);</code>" "<code>define('" . $dropins[ $plugin_file ][1] . "', true);</code>",
'<code>wp-config.php</code>'
) . '</p>'; ) . '</p>';
} }
if ( $plugin_data['Description'] ) if ( $plugin_data['Description'] )

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-beta2-35444'; $wp_version = '4.4-beta2-35445';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.