Ticket #15301: 15301.3.diff
File 15301.3.diff, 975 bytes (added by , 14 years ago) |
---|
-
wp-admin/admin-header.php
11 11 require_once( './admin.php' ); 12 12 13 13 get_admin_page_title(); 14 15 14 $title = esc_html( strip_tags( $title ) ); 16 15 16 $page_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $title, get_bloginfo( 'name' ) ); 17 $page_title = apply_filters( 'admin_title', $page_title, $title ); 18 17 19 wp_user_settings(); 18 20 wp_menu_unfold(); 19 21 … … 30 32 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 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 $page_title; ?></title> 34 36 <?php 35 37 36 38 wp_admin_css( 'global' );