From 057ed950e7838c13ff79e47098139d253feda0ff Mon Sep 17 00:00:00 2001 From: nacin Date: Tue, 7 Dec 2010 20:41:43 +0000 Subject: [PATCH] Fix a sprintf call. props wojtek.szkutnik, sorich87. fixes #14555. git-svn-id: http://svn.automattic.com/wordpress/trunk@16774 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/network/edit.php b/wp-admin/network/edit.php index 5afa1b7046..939139305d 100644 --- a/wp-admin/network/edit.php +++ b/wp-admin/network/edit.php @@ -100,7 +100,7 @@ switch ( $_GET['action'] ) { wp_die( __( 'You do not have permission to access this page.' ) ); if ( empty( $_POST ) ) - wp_die( sprintf( __( 'You probably need to go back to the options page.', esc_url( admin_url( 'settings.php' ) ) ) ) ); + wp_die( sprintf( __( 'You probably need to go back to the options page.' ), esc_url( admin_url( 'settings.php' ) ) ) ); if ( isset($_POST['WPLANG']) && ( '' === $_POST['WPLANG'] || in_array( $_POST['WPLANG'], get_available_languages() ) ) ) update_site_option( 'WPLANG', $_POST['WPLANG'] ); @@ -178,7 +178,7 @@ switch ( $_GET['action'] ) { } else { wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => 'not_deleted' ), wp_get_referer() ) ); } - + exit(); break;