Changeset 22314 for trunk/wp-admin/install.php
- Timestamp:
- 10/26/2012 07:40:39 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install.php
r20715 r22314 59 59 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 60 60 <title><?php _e( 'WordPress › Installation' ); ?></title> 61 <?php wp_admin_css( 'install', true ); ?> 61 <?php 62 wp_admin_css( 'install', true ); 63 wp_admin_css( 'buttons', true ); 64 ?> 62 65 </head> 63 66 <body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>> … … 135 138 </tr> 136 139 </table> 137 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Install WordPress' ); ?>" class="button " /></p>140 <p class="step"><input type="submit" name="Submit" value="<?php esc_attr_e( 'Install WordPress' ); ?>" class="button button-large" /></p> 138 141 </form> 139 142 <?php … … 143 146 if ( is_blog_installed() ) { 144 147 display_header(); 145 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 ">' . __('Log In') . '</a></p></body></html>' );148 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>' ); 146 149 } 147 150 … … 242 245 </table> 243 246 244 <p class="step"><a href="../wp-login.php" class="button "><?php _e( 'Log In' ); ?></a></p>247 <p class="step"><a href="../wp-login.php" class="button button-large"><?php _e( 'Log In' ); ?></a></p> 245 248 246 249 <?php
Note: See TracChangeset
for help on using the changeset viewer.