Changeset 20417 for trunk/wp-admin/admin-header.php
- Timestamp:
- 04/10/2012 01:19:30 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/admin-header.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r19871 r20417 12 12 13 13 // In case admin-header.php is included in a function. 14 global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version, $is_iphone,14 global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version, 15 15 $current_site, $update_title, $total_update_count, $parent_file; 16 16 … … 88 88 $admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); 89 89 90 if ( $is_iphone ) { ?> 91 <style type="text/css">.row-actions{visibility:visible;}</style> 92 <?php } ?> 90 if ( wp_is_mobile() ) 91 $admin_body_class .= ' mobile'; 92 93 ?> 93 94 </head> 94 95 <body class="wp-admin no-js <?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>">
Note: See TracChangeset
for help on using the changeset viewer.