Changeset 24695 for trunk/wp-includes/functions.php
- Timestamp:
- 07/12/2013 11:32:32 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r24594 r24695 3944 3944 <div id="wp-auth-check-bg"></div> 3945 3945 <div id="wp-auth-check"> 3946 <div class="wp-auth-check-close" tabindex="0" title="<?php esc_attr_e('Close'); ?>"></div> 3946 3947 <?php 3947 3948 … … 3958 3959 <?php _e('The login page will open in a new window. After logging in you can close it and return to this page.'); ?></p> 3959 3960 </div> 3960 <p class="wp-auth-check-close"><a href="#" class="button button-primary"><?php _e('Close'); ?></a></p>3961 3961 </div> 3962 3962 </div> … … 3975 3975 // If the user is logged in and we are outside the login grace period, bail. 3976 3976 if ( is_user_logged_in() && empty( $GLOBALS['login_grace_period'] ) ) 3977 return $response;3978 3979 return array_merge( $response, array( 'wp-auth-check' => ' 1' ) );3977 return array_merge( $response, array( 'wp-auth-check' => '1' ) ); 3978 3979 return array_merge( $response, array( 'wp-auth-check' => 'show' ) ); 3980 3980 } 3981 3981
Note: See TracChangeset
for help on using the changeset viewer.