From aa3baa71178d3a316b3550f0957abe7d812aa393 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 4 Jan 2004 11:36:17 +0000 Subject: [PATCH] Missing compatibility code --- ChangeLog | 4 ++++ libraries/config_import.lib.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 36a644ac9..2660a56e6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-01-04 Alexander M. Turek + * libraries/config_import.lib.php: Added missing compatibility code for + $cfg['RecodingEngine']. + 2004-01-02 Alexander M. Turek * libraries/mysql_charsets.lib.php, libraries/sqlparser.lib.php: MySQL collations are now parsed and highlighted. diff --git a/libraries/config_import.lib.php b/libraries/config_import.lib.php index 993a3b94e..1778e8f05 100644 --- a/libraries/config_import.lib.php +++ b/libraries/config_import.lib.php @@ -536,6 +536,10 @@ if (!isset($cfg['AllowAnywhereRecoding'])) { $cfg['AllowAnywhereRecoding'] = FALSE; } +if (!isset($cfg['RecodingEngine'])) { + $cfg['RecodingEngine'] = 'auto'; +} + if (!isset($cfg['IconvExtraParams'])) { $cfg['IconvExtraParams'] = ''; }