From 047d9c9993853f33926f7373df55bf60d504bdfc Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Mon, 30 Mar 2009 13:52:05 +0000 Subject: [PATCH] - Fixed database selection (step 2 of the wizard) under Firefox. SVN:code[25] --- setup/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/index.php b/setup/index.php index ce83b1c7d9..fb9d5d6295 100644 --- a/setup/index.php +++ b/setup/index.php @@ -294,13 +294,13 @@ function DisplayStep2(setup_web_page $oP, Config $oConfig, $sDBServer, $sDBUser, } else { - $aForm[] = array('label' => ""); + $aForm[] = array('label' => " "); $oP->add_ready_script("$('#current_db_name').click( function() { $('#current_db').attr('checked', true); });"); } - $aForm[] = array('label' => ""); + $aForm[] = array('label' => " "); $oP->form($aForm); - $oP->add_ready_script("$('#new_db_name').click( function() { $('#new_db').attr('checked', true); });"); + $oP->add_ready_script("$('#new_db_name').click( function() { $('#new_db').attr('checked', true); })"); $oP->add("\n"); $aForm = array(); $aForm[] = array('label' => "Add a prefix to all the tables: ");