From 3b599031a1eb7e8c8d86b54a9110f026a75acc52 Mon Sep 17 00:00:00 2001 From: Nikolay Bachiyski Date: Sat, 29 May 2010 12:12:48 +0000 Subject: [PATCH] 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: https://develop.svn.wordpress.org/trunk@15051 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/network.php b/wp-admin/network.php index 4c9b03b289..cd277a5cd1 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -127,7 +127,7 @@ function network_step1( $errors = false ) { $active_plugins = get_option( 'active_plugins' ); if ( ! empty( $active_plugins ) ) { - echo '

' . __('Warning:') . ' ' . sprintf( __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '

' . __(' Once the network is created, you may reactivate your plugins.' ) . '

'; + echo '

' . __('Warning:') . ' ' . sprintf( __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '

' . __( 'Once the network is created, you may reactivate your plugins.' ) . '

'; echo ''; include( './admin-footer.php' ); die();