Ticket #41413: 41413.patch
File 41413.patch, 545 bytes (added by , 6 years ago) |
---|
-
src/wp-includes/functions.php
1433 1433 */ 1434 1434 function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) { 1435 1435 $actionurl = str_replace( '&', '&', $actionurl ); 1436 return esc_ html( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) );1436 return esc_url( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) ); 1437 1437 } 1438 1438 1439 1439 /**