Changeset 23411
- Timestamp:
- 02/14/2013 05:12:23 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r23267 r23411 1175 1175 function wp_nonce_url( $actionurl, $action = -1 ) { 1176 1176 $actionurl = str_replace( '&', '&', $actionurl ); 1177 return esc_ html( add_query_arg( '_wpnonce', wp_create_nonce( $action ), $actionurl ) );1177 return esc_url( add_query_arg( '_wpnonce', wp_create_nonce( $action ), $actionurl ) ); 1178 1178 } 1179 1179
Note: See TracChangeset
for help on using the changeset viewer.