Revert [23411] until encoding differences are worked out. see #20771.

git-svn-id: http://core.svn.wordpress.org/trunk@23637 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-03-07 06:57:56 +00:00
parent 799ac18951
commit af53edb696

View File

@ -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 ) );
}
/**