From fc250d46f3b691bf1c761e64b4894a8cba3eb3e2 Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@13356 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 bc5234cb1..f139b135b 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();