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:
parent
2920285225
commit
746ba4c9c4
|
@ -529,9 +529,10 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
} else {
|
||||
$is_active = false;
|
||||
$description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="error-message">' . __( 'Inactive:' ) . '</span></strong> ' .
|
||||
/* translators: %s: drop-in constant name */
|
||||
sprintf( __( 'Requires %s in <code>wp-config.php</code>.' ),
|
||||
"<code>define('" . $dropins[ $plugin_file ][1] . "', true);</code>"
|
||||
/* translators: 1: drop-in constant name, 2: wp-config.php */
|
||||
sprintf( __( 'Requires %1$s in %2$s file.' ),
|
||||
"<code>define('" . $dropins[ $plugin_file ][1] . "', true);</code>",
|
||||
'<code>wp-config.php</code>'
|
||||
) . '</p>';
|
||||
}
|
||||
if ( $plugin_data['Description'] )
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue