1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 13:11:52 +02:00

Fixes #863 - Allow uppercase database names during installation.

This commit is contained in:
Cameron 2015-02-06 00:25:08 -08:00
parent f8d11e1e46
commit bc85167383

View File

@ -433,7 +433,7 @@ class e_install
<tr>
<td><label for='db'>".LANINS_027."</label></td>
<td class='form-inline'>
<input type='text' name='db' size='20' id='db' value='' maxlength='100' required='required' pattern='^[a-z][a-z0-9_-]*' />
<input type='text' name='db' size='20' id='db' value='' maxlength='100' required='required' pattern='^[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>