mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-03-15 05:44:49 +00:00
Database Username and Password should be on two lines rather than one
This commit is contained in:
parent
dce2b2367f
commit
84d9b3039d
3 changed files with 5 additions and 3 deletions
install
|
@ -198,6 +198,7 @@ div.install_block .select{
|
|||
margin-left:4px;
|
||||
float:left;
|
||||
}
|
||||
.starhook div.install_block span {display: inline; float: left; width: 5px; padding-top:8px; padding-left:3px;}
|
||||
input {
|
||||
padding:5px;
|
||||
margin:5px;
|
||||
|
|
|
@ -258,7 +258,7 @@ EOQ;
|
|||
|
||||
<!-- <div class="floatbox"> -->
|
||||
|
||||
<div class="form_section">
|
||||
<div class="form_section starhook">
|
||||
<!-- <div class="required">{$mod_strings['LBL_REQUIRED']}</div> -->
|
||||
<h3>{$mod_strings['LBL_DBCONF_TITLE_NAME']}</h3>
|
||||
EOQ2;
|
||||
|
@ -294,7 +294,7 @@ EOQ2;
|
|||
FORM;
|
||||
//if the type is password, set a hidden field to capture the value. This is so that we can properly encode special characters, which is a limitation with password fields
|
||||
if($type=='password'){
|
||||
$form .= "<input type='$type' name='{$name}_entry' id='{$name}_entry' value='".urldecode($sessval)."'><input type='hidden' name='$name' id='$name' value='".urldecode($sessval)."'>";
|
||||
$form .= "</div><div class=\"install_block\"><label>{$mod_strings['LBL_DBCONF_TITLE_PSWD_INFO_LABEL']}</label><span> </span><input type='$type' name='{$name}_entry' id='{$name}_entry' value='".urldecode($sessval)."'><input type='hidden' name='$name' id='$name' value='".urldecode($sessval)."'></div><div class=\"install_block\">";
|
||||
}else{
|
||||
$form .= "<input type='$type' name='$name' id='$name' value='$sessval'>";
|
||||
}
|
||||
|
|
|
@ -255,7 +255,8 @@ $mod_strings = array(
|
|||
'LBL_DBCONF_TITLE' => 'Database Configuration',
|
||||
'LBL_DBCONF_TITLE_NAME' => 'Provide Database Name',
|
||||
'LBL_DBCONF_TITLE_USER_INFO' => 'Provide Database User Information',
|
||||
'LBL_DBCONF_TITLE_USER_INFO_LABEL' => 'Database User and Password',
|
||||
'LBL_DBCONF_TITLE_USER_INFO_LABEL' => 'User',
|
||||
'LBL_DBCONF_TITLE_PSWD_INFO_LABEL' => 'Password',
|
||||
'LBL_DISABLED_DESCRIPTION_2' => 'After this change has been made, you may click the "Start" button below to begin your installation. <i>After the installation is complete, you will want to change the value for \'installer_locked\' to \'true\'.</i>',
|
||||
'LBL_DISABLED_DESCRIPTION' => 'The installer has already been run once. As a safety measure, it has been disabled from running a second time. If you are absolutely sure you want to run it again, please go to your config.php file and locate (or add) a variable called \'installer_locked\' and set it to \'false\'. The line should look like this:',
|
||||
'LBL_DISABLED_HELP_1' => 'For installation help, please visit the SuiteCRM',
|
||||
|
|
Loading…
Reference in a new issue