- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-includes/admin-bar.php
r17436 r17509 338 338 */ 339 339 function is_admin_bar_showing() { 340 global $show_admin_bar ;340 global $show_admin_bar, $pagenow; 341 341 342 342 /* For all these types of request we never want an admin bar period */ … … 345 345 346 346 if ( ! isset( $show_admin_bar ) ) { 347 if ( ! is_user_logged_in() ) {347 if ( ! is_user_logged_in() || 'wp-login.php' == $pagenow ) { 348 348 $show_admin_bar = false; 349 349 } else {
Note: See TracChangeset
for help on using the changeset viewer.