Changeset 3639:fe9f4d94f86b for admin/install/wizard.php
- Timestamp:
- 12/29/17 14:17:26 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/install/wizard.php
r3565 r3639 201 201 '<form action="wizard.php" method="post">'. 202 202 '<p><label class="required" for="DBDRIVER"><abbr title="'.__('Required field').'">*</abbr> '.__('Database type:').'</label> '. 203 form::combo('DBDRIVER',array(__('MySQL (deprecated)')=>'mysql',__('MySQLi')=>'mysqli',__('MySQLi (full UTF-8)')=>'mysqlimb4',__('PostgreSQL')=>'pgsql',__('SQLite')=>'sqlite'),$DBDRIVER).'</p>'. 203 form::combo('DBDRIVER',array( 204 __('MySQL (deprecated)') => 'mysql', 205 __('MySQLi') => 'mysqli', 206 __('MySQLi (full UTF-8)') => 'mysqlimb4', 207 __('PostgreSQL') => 'pgsql', 208 __('SQLite') => 'sqlite'), 209 $DBDRIVER,'','',false,'required placeholder="'.__('Driver').'"').'</p>'. 204 210 '<p><label for="DBHOST">'.__('Database Host Name:').'</label> '. 205 211 form::field('DBHOST',30,255,html::escapeHTML($DBHOST)).'</p>'. … … 211 217 form::password('DBPASSWORD',30,255).'</p>'. 212 218 '<p><label for="DBPREFIX" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Database Tables Prefix:').'</label> '. 213 form::field('DBPREFIX',30,255,html::escapeHTML($DBPREFIX) ).'</p>'.219 form::field('DBPREFIX',30,255,html::escapeHTML($DBPREFIX),'','',false,'required placeholder="'.__('Prefix').'"').'</p>'. 214 220 '<p><label for="ADMINMAILFROM">'.__('Master Email: (used as sender for password recovery)').'</label> '. 215 221 form::field('ADMINMAILFROM',30,255,html::escapeHTML($ADMINMAILFROM)).'</p>'.
Note: See TracChangeset
for help on using the changeset viewer.