From 4bd1d84c02f7e6b31b3b70cbe42bcbbadd617409 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 7 Mar 2013 06:57:56 +0000 Subject: [PATCH] Revert [23411] until encoding differences are worked out. see #20771. git-svn-id: https://develop.svn.wordpress.org/trunk@23637 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index b29b941d5d..e0b8cb8fd9 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1175,7 +1175,7 @@ function is_blog_installed() { */ function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) { $actionurl = str_replace( '&', '&', $actionurl ); - return esc_url( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) ); + return esc_html( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) ); } /**