Make WordPress Core

Changeset 23637


Ignore:
Timestamp:
03/07/2013 06:57:56 AM (12 years ago)
Author:
nacin
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r23578 r23637  
    11761176function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
    11771177    $actionurl = str_replace( '&', '&', $actionurl );
    1178     return esc_url( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) );
     1178    return esc_html( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) );
    11791179}
    11801180
Note: See TracChangeset for help on using the changeset viewer.