Missing compatibility code

This commit is contained in:
Alexander M. Turek
2004-01-04 11:36:17 +00:00
parent 97d618d187
commit aa3baa7117
2 changed files with 8 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-01-04 Alexander M. Turek <beggaronabeachofgold@derrabus.de>
* libraries/config_import.lib.php: Added missing compatibility code for
$cfg['RecodingEngine'].
2004-01-02 Alexander M. Turek <wecantdance@derrabus.de>
* libraries/mysql_charsets.lib.php, libraries/sqlparser.lib.php:
MySQL collations are now parsed and highlighted.

View File

@@ -536,6 +536,10 @@ if (!isset($cfg['AllowAnywhereRecoding'])) {
$cfg['AllowAnywhereRecoding'] = FALSE;
}
if (!isset($cfg['RecodingEngine'])) {
$cfg['RecodingEngine'] = 'auto';
}
if (!isset($cfg['IconvExtraParams'])) {
$cfg['IconvExtraParams'] = '';
}