Ticket #22385: 22385.patch
File 22385.patch, 3.0 KB (added by , 12 years ago) |
---|
-
wp-admin/custom-background.php
260 260 <input type="file" id="upload" name="import" /> 261 261 <input type="hidden" name="action" value="save" /> 262 262 <?php wp_nonce_field( 'custom-background-upload', '_wpnonce-custom-background-upload' ); ?> 263 <?php submit_button( __( 'Upload' ), ' small', 'submit', false ); ?>263 <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?> 264 264 </p> 265 265 <?php 266 266 $image_library_url = get_upload_iframe_src( 'image', null, 'library' ); -
wp-admin/custom-header.php
531 531 <input type="file" id="upload" name="import" /> 532 532 <input type="hidden" name="action" value="save" /> 533 533 <?php wp_nonce_field( 'custom-header-upload', '_wpnonce-custom-header-upload' ); ?> 534 <?php submit_button( __( 'Upload' ), ' small', 'submit', false ); ?>534 <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?> 535 535 </p> 536 536 <?php 537 537 $image_library_url = get_upload_iframe_src( 'image', null, 'library' ); -
wp-admin/install.php
136 136 <td colspan="2"><label><input type="checkbox" name="blog_public" value="1" <?php checked( $blog_public ); ?> /> <?php _e( 'Allow search engines to index this site.' ); ?></label></td> 137 137 </tr> 138 138 </table> 139 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Install WordPress' ); ?>" class="button button-large " /></p>139 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Install WordPress' ); ?>" class="button button-large button-primary" /></p> 140 140 </form> 141 141 <?php 142 142 } // end display_setup_form() … … 144 144 // Let's check to make sure WP isn't already installed. 145 145 if ( is_blog_installed() ) { 146 146 display_header(); 147 die( '<h1>' . __( 'Already Installed' ) . '</h1><p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p><p class="step"><a href="../wp-login.php" class="button button-large ">' . __( 'Log In' ) . '</a></p></body></html>' );147 die( '<h1>' . __( 'Already Installed' ) . '</h1><p>' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '</p><p class="step"><a href="../wp-login.php" class="button button-large button-primary">' . __( 'Log In' ) . '</a></p></body></html>' ); 148 148 } 149 149 150 150 $php_version = phpversion(); … … 243 243 </tr> 244 244 </table> 245 245 246 <p class="step"><a href="../wp-login.php" class="button button-large "><?php _e( 'Log In' ); ?></a></p>246 <p class="step"><a href="../wp-login.php" class="button button-large button-primary"><?php _e( 'Log In' ); ?></a></p> 247 247 248 248 <?php 249 249 }