Remove a space in the beginning of a translatable string.
It was a typo -- the space should have been between the parent and the quote. git-svn-id: http://svn.automattic.com/wordpress/trunk@15051 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1c6f95023b
commit
83d71541cf
|
@ -127,7 +127,7 @@ function network_step1( $errors = false ) {
|
||||||
|
|
||||||
$active_plugins = get_option( 'active_plugins' );
|
$active_plugins = get_option( 'active_plugins' );
|
||||||
if ( ! empty( $active_plugins ) ) {
|
if ( ! empty( $active_plugins ) ) {
|
||||||
echo '<div class="updated"><p><strong>' . __('Warning:') . '</strong> ' . sprintf( __( 'Please <a href="%s">deactivate your plugins</a> before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '</p></div><p>' . __(' Once the network is created, you may reactivate your plugins.' ) . '</p>';
|
echo '<div class="updated"><p><strong>' . __('Warning:') . '</strong> ' . sprintf( __( 'Please <a href="%s">deactivate your plugins</a> before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '</p></div><p>' . __( 'Once the network is created, you may reactivate your plugins.' ) . '</p>';
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
include( './admin-footer.php' );
|
include( './admin-footer.php' );
|
||||||
die();
|
die();
|
||||||
|
|
Loading…
Reference in New Issue