1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-15 10:02:02 +02:00

Fixes #3845 - uppercase database name fix.

This commit is contained in:
Cameron 2019-06-13 17:13:20 -07:00
parent baa1c8c485
commit 5d2076a344

View File

@ -593,7 +593,7 @@ class e_install
<tr>
<td><label for='db'>".LANINS_027."</label></td>
<td class='form-inline'>
<input class='form-control input-large' type='text' name='db' size='20' id='db' value='".varset($this->previous_steps['mysql']['db'])."' maxlength='100' required='required' pattern='^[a-z][a-zA-Z0-9_-]*' />
<input class='form-control input-large' type='text' name='db' size='20' id='db' value='".varset($this->previous_steps['mysql']['db'])."' maxlength='100' required='required' pattern='^[a-zA-Z][a-zA-Z0-9_-]*' />
<label class='checkbox-inline'><input type='checkbox' name='createdb' value='1' ".($this->previous_steps['mysql']['createdb'] ==1 ? "checked='checked'" : "")." /><small>".LANINS_028."</small></label>
<span class='field-help'>".LANINS_033."</span>
</td>