Changeset 27272 for trunk/src/wp-includes/functions.php
- Timestamp:
- 02/25/2014 08:01:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r27262 r27272 2081 2081 if ( 'log-out' == $action ) { 2082 2082 $html = sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'name' ) ) . '</p><p>'; 2083 $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url() ); 2083 $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : ''; 2084 $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url( $redirect_to ) ); 2084 2085 } else { 2085 2086 $html = __( 'Are you sure you want to do this?' );
Note: See TracChangeset
for help on using the changeset viewer.