Changeset 16260
- Timestamp:
- 11/09/2010 06:03:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r16224 r16260 12 12 13 13 get_admin_page_title(); 14 $title = esc_html( strip_tags( $title ) ); 14 15 15 $title = esc_html( strip_tags( $title ) ); 16 $admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, get_bloginfo( 'name' ) ); 17 $admin_title = apply_filters( 'admin_title', $admin_title, $title ); 16 18 17 19 wp_user_settings(); … … 31 33 <head> 32 34 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 33 <title><?php echo $ title; ?> ‹ <?php bloginfo('name') ?> — WordPress</title>35 <title><?php echo $admin_title; ?></title> 34 36 <?php 35 37
Note: See TracChangeset
for help on using the changeset viewer.