Skip to content

Commit

Permalink
MDL-26355 increase size of installer forms fields
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Feb 13, 2011
1 parent d911c72 commit ae3a794
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@


$disabled = empty($distro->dbhost) ? '' : 'disabled="disabled'; $disabled = empty($distro->dbhost) ? '' : 'disabled="disabled';
echo '<div class="formrow"><label for="id_dbhost" class="formlabel">'.$strdbhost.'</label>'; echo '<div class="formrow"><label for="id_dbhost" class="formlabel">'.$strdbhost.'</label>';
echo '<input id="id_dbhost" name="dbhost" '.$disabled.' type="text" value="'.s($config->dbhost).'" size="30" class="forminput" />'; echo '<input id="id_dbhost" name="dbhost" '.$disabled.' type="text" value="'.s($config->dbhost).'" size="50" class="forminput" />';
echo '</div>'; echo '</div>';


echo '<div class="formrow"><label for="id_dbname" class="formlabel">'.$strdbname.'</label>'; echo '<div class="formrow"><label for="id_dbname" class="formlabel">'.$strdbname.'</label>';
Expand Down Expand Up @@ -552,15 +552,15 @@


echo '<div class="userinput">'; echo '<div class="userinput">';
echo '<div class="formrow"><label for="id_wwwroot" class="formlabel">'.$paths['wwwroot'].'</label>'; echo '<div class="formrow"><label for="id_wwwroot" class="formlabel">'.$paths['wwwroot'].'</label>';
echo '<input id="id_wwwroot" name="wwwroot" type="text" value="'.s($CFG->wwwroot).'" disabled="disabled" size="45" class="forminput" />'; echo '<input id="id_wwwroot" name="wwwroot" type="text" value="'.s($CFG->wwwroot).'" disabled="disabled" size="70" class="forminput" />';
echo '</div>'; echo '</div>';


echo '<div class="formrow"><label for="id_dirroot" class="formlabel">'.$paths['dirroot'].'</label>'; echo '<div class="formrow"><label for="id_dirroot" class="formlabel">'.$paths['dirroot'].'</label>';
echo '<input id="id_dirroot" name="dirroot" type="text" value="'.s($CFG->dirroot).'" disabled="disabled" size="45"class="forminput" />'; echo '<input id="id_dirroot" name="dirroot" type="text" value="'.s($CFG->dirroot).'" disabled="disabled" size="70"class="forminput" />';
echo '</div>'; echo '</div>';


echo '<div class="formrow"><label for="id_dataroot" class="formlabel">'.$paths['dataroot'].'</label>'; echo '<div class="formrow"><label for="id_dataroot" class="formlabel">'.$paths['dataroot'].'</label>';
echo '<input id="id_dataroot" name="dataroot" type="text" value="'.s($config->dataroot).'" size="45" class="forminput" />'; echo '<input id="id_dataroot" name="dataroot" type="text" value="'.s($config->dataroot).'" size="70" class="forminput" />';
if ($hint_dataroot !== '') { if ($hint_dataroot !== '') {
echo '<div class="hint">'.$hint_dataroot.'</div>'; echo '<div class="hint">'.$hint_dataroot.'</div>';
} }
Expand Down

0 comments on commit ae3a794

Please sign in to comment.