Changeset 8972
- Timestamp:
- 09/25/2008 05:13:53 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r8944 r8972 2232 2232 function wp_nonce_ays( $action ) { 2233 2233 $title = __( 'WordPress Failure Notice' ); 2234 $html = wp_specialchars( wp_explain_nonce( $action ) ) . '</p>';2234 $html = wp_specialchars( wp_explain_nonce( $action ) ); 2235 2235 if ( wp_get_referer() ) 2236 $html .= "< p><a href='" . remove_query_arg( 'updated', clean_url( wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>";2236 $html .= "</p><p><a href='" . remove_query_arg( 'updated', clean_url( wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>"; 2237 2237 wp_die( $html, $title); 2238 2238 }
Note: See TracChangeset
for help on using the changeset viewer.