Ticket #34519: 34519.patch
File 34519.patch, 4.7 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/install.css
24 24 color: #00a0d2; 25 25 } 26 26 27 h1 { 27 h1, 28 h2 { 28 29 border-bottom: 1px solid #dedede; 29 30 clear: both; 30 31 color: #666; … … 35 36 font-weight: normal; 36 37 } 37 38 38 h2 {39 font-size: 16px;40 }41 42 39 p, li, dd, dt { 43 40 padding-bottom: 2px; 44 41 font-size: 14px; … … 73 70 74 71 #logo { 75 72 margin: 6px 0 14px 0; 73 padding: 0 0 7px 0; 76 74 border-bottom: none; 77 text-align:center 75 text-align:center; 78 76 } 79 77 #logo a { 80 78 background-image: url(../images/w-logo-blue.png?ver=20131202); -
src/wp-admin/install.php
16 16 <title>Error: PHP is not running</title> 17 17 </head> 18 18 <body class="wp-core-ui"> 19 < h1 id="logo"><a href="https://wordpress.org/">WordPress</a></h1>20 <h 2>Error: PHP is not running</h2>19 <p id="logo"><a href="https://wordpress.org/">WordPress</a></p> 20 <h1>Error: PHP is not running</h1> 21 21 <p>WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.</p> 22 22 </body> 23 23 </html> … … 76 76 ?> 77 77 </head> 78 78 <body class="wp-core-ui<?php echo $body_classes ?>"> 79 < h1 id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>79 <p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></p> 80 80 81 81 <?php 82 82 } // end display_header() … … 106 106 107 107 if ( ! is_null( $error ) ) { 108 108 ?> 109 <h1><?php _e( 'Welcome' ); ?></h1> 109 110 <p class="message"><?php echo $error; ?></p> 110 111 <?php } ?> 111 112 <form id="setup" method="post" action="install.php?step=2" novalidate="novalidate"> … … 286 287 <h1><?php _ex( 'Welcome', 'Howdy' ); ?></h1> 287 288 <p><?php _e( 'Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.' ); ?></p> 288 289 289 <h 1><?php _e( 'Information needed' ); ?></h1>290 <h2><?php _e( 'Information needed' ); ?></h2> 290 291 <p><?php _e( 'Please provide the following information. Don’t worry, you can always change these settings later.' ); ?></p> 291 292 292 293 <?php -
src/wp-admin/setup-config.php
88 88 <?php wp_admin_css( 'install', true ); ?> 89 89 </head> 90 90 <body class="<?php echo implode( ' ', $body_classes ); ?>"> 91 < h1 id="logo"><a href="<?php esc_attr_e( 'https://wordpress.org/' ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></h1>91 <p id="logo"><a href="<?php esc_attr_e( 'https://wordpress.org/' ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></p> 92 92 <?php 93 93 } // end function setup_config_display_header(); 94 94 … … 103 103 case -1: 104 104 if ( wp_can_install_language_pack() && empty( $language ) && ( $languages = wp_get_available_translations() ) ) { 105 105 setup_config_display_header( 'language-chooser' ); 106 echo '<h1 class="screen-reader-text">Select a default language</h1>'; 106 107 echo '<form id="setup" method="post" action="?step=0">'; 107 108 wp_install_language_form( $languages ); 108 109 echo '</form>'; … … 129 130 $step_1 .= '&language=' . $loaded_language; 130 131 } 131 132 ?> 132 133 <h1 class="screen-reader-text"><?php _e( 'Before getting started' ) ?></h1> 133 134 <p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.' ) ?></p> 134 135 <ol> 135 136 <li><?php _e( 'Database name' ); ?></li> … … 155 156 156 157 setup_config_display_header(); 157 158 ?> 159 <h1 class="screen-reader-text"><?php _e( 'Setup your database connection' ) ?></h1> 158 160 <form method="post" action="setup-config.php?step=2"> 159 161 <p><?php _e( "Below you should enter your database connection details. If you’re not sure about these, contact your host." ); ?></p> 160 162 <table class="form-table"> … … 344 346 chmod( $path_to_wp_config, 0666 ); 345 347 setup_config_display_header(); 346 348 ?> 349 <h1 class="screen-reader-text"><?php _e( 'Successful database connection' ) ?></h1> 347 350 <p><?php _e( "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" ); ?></p> 348 351 349 352 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the install' ); ?></a></p>