Ticket #14771: 14771.diff
| File 14771.diff, 13.4 KB (added by mitchoyoshitaka, 2 years ago) |
|---|
-
wp-login.php
Property changes on: . ___________________________________________________________________ Added: svn:ignore + wp-config.trunk.php wp-config.shrimptest.php wp-config.php .htaccess domains
56 56 add_action( 'login_head', 'wp_shake_js', 12 ); 57 57 58 58 ?> 59 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">60 <html xmlns="http://www.w3.org/1999/xhtml"<?php language_attributes(); ?>>59 <!DOCTYPE html> 60 <html <?php language_attributes(); ?>> 61 61 <head> 62 62 <title><?php bloginfo('name'); ?> › <?php echo $title; ?></title> 63 63 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> -
wp-includes/functions.php
2840 2840 elseif ( function_exists( 'is_rtl' ) && is_rtl() ) 2841 2841 $text_direction = 'rtl'; 2842 2842 ?> 2843 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">2843 <!DOCTYPE html> 2844 2844 <!-- Ticket #11289, IE bug fix: always pad the error page with enough characters such that it is greater than 512 bytes, even after gzip compression abcdefghijklmnopqrstuvwxyz1234567890aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz11223344556677889900abacbcbdcdcededfefegfgfhghgihihjijikjkjlklkmlmlnmnmononpopoqpqprqrqsrsrtstsubcbcdcdedefefgfabcadefbghicjkldmnoepqrfstugvwxhyz1i234j567k890laabmbccnddeoeffpgghqhiirjjksklltmmnunoovppqwqrrxsstytuuzvvw0wxx1yyz2z113223434455666777889890091abc2def3ghi4jkl5mno6pqr7stu8vwx9yz11aab2bcc3dd4ee5ff6gg7hh8ii9j0jk1kl2lmm3nnoo4p5pq6qrr7ss8tt9uuvv0wwx1x2yyzz13aba4cbcb5dcdc6dedfef8egf9gfh0ghg1ihi2hji3jik4jkj5lkl6kml7mln8mnm9ono --> 2845 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( function_exists( 'language_attributes' ) && function_exists( 'is_rtl' ) ) language_attributes(); else echo "dir='$text_direction'"; ?>>2845 <html <?php if ( function_exists( 'language_attributes' ) && function_exists( 'is_rtl' ) ) language_attributes(); else echo "dir='$text_direction'"; ?>> 2846 2846 <head> 2847 2847 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 2848 2848 <title><?php echo $title ?></title> … … 3289 3289 nocache_headers(); 3290 3290 header( 'Content-Type: text/html; charset=utf-8' ); 3291 3291 ?> 3292 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">3293 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( function_exists( 'language_attributes' ) ) language_attributes(); ?>>3292 <!DOCTYPE html> 3293 <html <?php if ( function_exists( 'language_attributes' ) ) language_attributes(); ?>> 3294 3294 <head> 3295 3295 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 3296 3296 <title>Database Error</title> -
wp-includes/load.php
161 161 header( 'Content-Type: text/html; charset=utf-8' ); 162 162 header( 'Retry-After: 600' ); 163 163 ?> 164 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">165 <html xmlns="http://www.w3.org/1999/xhtml">164 <!DOCTYPE html> 165 <html> 166 166 <head> 167 167 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 168 168 <title><?php echo /*WP_I18N_MAINTENANCE*/'Maintenance'/*/WP_I18N_MAINTENANCE*/; ?></title> -
wp-includes/ms-deprecated.php
68 68 _deprecated_function( __FUNCTION__, '3.0', 'wp_die()' ); 69 69 $message = apply_filters( 'graceful_fail', $message ); 70 70 $message_template = apply_filters( 'graceful_fail_template', 71 '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">72 <html xmlns="http://www.w3.org/1999/xhtml"><head profile="http://gmpg.org/xfn/11">71 '<!DOCTYPE html> 72 <html><head profile="http://gmpg.org/xfn/11"> 73 73 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 74 74 <title>Error!</title> 75 75 <style type="text/css"> -
wp-includes/theme-compat/comments-popup.php
8 8 * 9 9 */ 10 10 _deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3.0', null, sprintf( __('Please include a %1$s template in your theme.'), basename(__FILE__) ) ); 11 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">12 <html xmlns="http://www.w3.org/1999/xhtml">11 ?><!DOCTYPE html> 12 <html> 13 13 <head> 14 14 <title><?php printf(__('%1$s - Comments on %2$s'), get_option('blogname'), the_title('','',false)); ?></title> 15 15 -
wp-includes/theme-compat/header.php
9 9 */ 10 10 _deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3.0', null, sprintf( __('Please include a %1$s template in your theme.'), basename(__FILE__) ) ); 11 11 ?> 12 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">13 <html xmlns="http://www.w3.org/1999/xhtml"<?php language_attributes(); ?>>12 <!DOCTYPE html> 13 <html <?php language_attributes(); ?>> 14 14 15 15 <head profile="http://gmpg.org/xfn/11"> 16 16 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> -
readme.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">2 <html xmlns="http://www.w3.org/1999/xhtml">1 <!DOCTYPE html> 2 <html> 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 5 <title>WordPress › ReadMe</title> -
wp-admin/includes/template.php
1549 1549 $admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix); 1550 1550 $admin_body_class .= ' iframe'; 1551 1551 1552 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">1553 <html xmlns="http://www.w3.org/1999/xhtml"<?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>1552 ?><!DOCTYPE html> 1553 <html <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1554 1554 <head> 1555 1555 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 1556 1556 <title><?php bloginfo('name') ?> › <?php echo $title ?> — <?php _e('WordPress'); ?></title> -
wp-admin/includes/media.php
301 301 */ 302 302 function wp_iframe($content_func /* ... */) { 303 303 ?> 304 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">305 <html xmlns="http://www.w3.org/1999/xhtml"<?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>304 <!DOCTYPE html> 305 <html <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 306 306 <head> 307 307 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 308 308 <title><?php bloginfo('name') ?> › <?php _e('Uploads'); ?> — <?php _e('WordPress'); ?></title> -
wp-admin/network/edit.php
322 322 if ( $current_site->blog_id == $id ) 323 323 wp_die( __( 'You are not allowed to change the current site.' ) ); 324 324 ?> 325 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">326 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( function_exists( 'language_attributes' ) ) language_attributes(); ?>>325 <!DOCTYPE html> 326 <html <?php if ( function_exists( 'language_attributes' ) ) language_attributes(); ?>> 327 327 <head> 328 328 <title><?php _e( 'WordPress › Confirm your action' ); ?></title> 329 329 -
wp-admin/admin-header.php
31 31 wp_menu_unfold(); 32 32 33 33 ?> 34 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">35 <html xmlns="http://www.w3.org/1999/xhtml"<?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>34 <!DOCTYPE html> 35 <html <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 36 36 <head> 37 37 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 38 38 <title><?php echo $admin_title; ?></title> -
wp-admin/upgrade.php
42 42 43 43 @header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); 44 44 ?> 45 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">46 <html xmlns="http://www.w3.org/1999/xhtml"<?php language_attributes(); ?>>45 <!DOCTYPE html> 46 <html <?php language_attributes(); ?>> 47 47 <head> 48 48 <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php echo get_option( 'blog_charset' ); ?>" /> 49 49 <title><?php _e( 'WordPress › Update' ); ?></title> -
wp-admin/press-this.php
320 320 } 321 321 322 322 ?> 323 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">324 <html xmlns="http://www.w3.org/1999/xhtml"<?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>323 <!DOCTYPE html> 324 <html <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 325 325 <head> 326 326 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 327 327 <title><?php _e('Press This') ?></title> -
wp-admin/setup-config.php
80 80 function display_header() { 81 81 header( 'Content-Type: text/html; charset=utf-8' ); 82 82 ?> 83 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">84 <html xmlns="http://www.w3.org/1999/xhtml">83 <!DOCTYPE html> 84 <html> 85 85 <head> 86 86 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 87 87 <title>WordPress › Setup Configuration File</title> -
wp-admin/install.php
9 9 // Sanity check. 10 10 if ( false ) { 11 11 ?> 12 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">13 <html xmlns="http://www.w3.org/1999/xhtml">12 <!DOCTYPE html> 13 <html> 14 14 <head> 15 15 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 16 16 <title>Error: PHP is not running</title> … … 53 53 function display_header() { 54 54 header( 'Content-Type: text/html; charset=utf-8' ); 55 55 ?> 56 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">57 <html xmlns="http://www.w3.org/1999/xhtml"<?php language_attributes(); ?>>56 <!DOCTYPE html> 57 <html <?php language_attributes(); ?>> 58 58 <head> 59 59 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 60 60 <title><?php _e( 'WordPress › Installation' ); ?></title> -
wp-admin/maint/repair.php
6 6 7 7 header( 'Content-Type: text/html; charset=utf-8' ); 8 8 ?> 9 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">10 <html xmlns="http://www.w3.org/1999/xhtml"<?php language_attributes(); ?>>9 <!DOCTYPE html> 10 <html <?php language_attributes(); ?>> 11 11 <head> 12 12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 13 13 <title><?php _e('WordPress › Database Repair'); ?></title>