Changeset 3565:7b120898d2bd for admin
- Timestamp:
- 07/27/17 17:24:16 (8 years ago)
- Branch:
- default
- Location:
- admin/install
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/install/check.php
r3137 r3565 49 49 } 50 50 51 if ($con->driver() == 'mysql' || $con->driver() == 'mysqli' )51 if ($con->driver() == 'mysql' || $con->driver() == 'mysqli' || $con->driver() == 'mysqlimb4') 52 52 { 53 53 if (version_compare($con->version(),'4.1','<')) -
admin/install/wizard.php
r3404 r3565 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',__(' PostgreSQL')=>'pgsql',__('SQLite')=>'sqlite'),$DBDRIVER).'</p>'.203 form::combo('DBDRIVER',array(__('MySQL (deprecated)')=>'mysql',__('MySQLi')=>'mysqli',__('MySQLi (full UTF-8)')=>'mysqlimb4',__('PostgreSQL')=>'pgsql',__('SQLite')=>'sqlite'),$DBDRIVER).'</p>'. 204 204 '<p><label for="DBHOST">'.__('Database Host Name:').'</label> '. 205 205 form::field('DBHOST',30,255,html::escapeHTML($DBHOST)).'</p>'.
Note: See TracChangeset
for help on using the changeset viewer.