Changeset 30356 for trunk/src/wp-includes/functions.php
- Timestamp:
- 11/16/2014 06:15:29 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r30355 r30356 2313 2313 */ 2314 2314 function wp_nonce_ays( $action ) { 2315 $title = __( 'WordPress Failure Notice' );2316 2315 if ( 'log-out' == $action ) { 2317 2316 $html = sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'name' ) ) . '</p><p>'; … … 2324 2323 } 2325 2324 2326 wp_die( $html, $title, array('response' => 403));2325 wp_die( $html, __( 'WordPress Failure Notice' ), 403 ); 2327 2326 } 2328 2327
Note: See TracChangeset
for help on using the changeset viewer.