From 1c9ff8788f017621ce37db785cb03f7aaeeb51a0 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 24 Feb 2010 01:58:27 +0000 Subject: [PATCH] Show "Log In" button on install.php when already installed. fixes #10488 props dancole git-svn-id: https://develop.svn.wordpress.org/trunk@13356 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/install.php b/wp-admin/install.php index bc5234cb1f..f139b135ba 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -118,7 +118,7 @@ function display_setup_form( $error = null ) { // Let's check to make sure WP isn't already installed. if ( is_blog_installed() ) { display_header(); - die( '

' . __( 'Already Installed' ) . '

' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '

' ); + die( '

' . __( 'Already Installed' ) . '

' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '

' . __('Log In') . '

' ); } $php_version = phpversion();