Changeset 34358 for trunk/src/wp-admin/install.php
- Timestamp:
- 09/20/2015 04:53:32 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/install.php
r33774 r34358 191 191 if ( is_blog_installed() ) { 192 192 display_header(); 193 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>' );193 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="' . esc_url( wp_login_url() ) . '" class="button button-large">' . __( 'Log In' ) . '</a></p></body></html>' ); 194 194 } 195 195 … … 342 342 </table> 343 343 344 <p class="step"><a href=" ../wp-login.php" class="button button-large"><?php _e( 'Log In' ); ?></a></p>344 <p class="step"><a href="<?php echo esc_url( wp_login_url() ); ?>" class="button button-large"><?php _e( 'Log In' ); ?></a></p> 345 345 346 346 <?php
Note: See TracChangeset
for help on using the changeset viewer.