diff --git a/ChangeLog b/ChangeLog index 89b872035..3198c274c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -18,6 +18,7 @@ $Source$ * lang/dutch updates, thanks to Ivo Teel. * lang/swedish updates, thanks to Björn T. Hallberg * lang/galician updates, thanks to Xosé Calvo + * libraries/config_import.lib.php3, fixed 3 parse errors 2002-06-19 Robin Johnson * libraries/charset_conversion.lib.php3, diff --git a/libraries/config_import.lib.php3 b/libraries/config_import.lib.php3 index f64196187..e95a1cad6 100644 --- a/libraries/config_import.lib.php3 +++ b/libraries/config_import.lib.php3 @@ -39,7 +39,7 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){ $cfg['Servers'][$i]['socket'] = ''; } - if (!isset($cfg['Servers'][$i]['connect_type']) { + if (!isset($cfg['Servers'][$i]['connect_type'])) { $cfg['Servers'][$i]['connect_type'] = 'tcp'; } @@ -196,7 +196,7 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){ } } - if (!isset($cfg['UseDbSearch']) { + if (!isset($cfg['UseDbSearch'])) { $cfg['UseDbSearch'] = TRUE; } @@ -475,7 +475,7 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){ } if (!isset($cfg['BrowseMarkerColor'])) { - if (isset($cfgBrowseMarkerColor) { + if (isset($cfgBrowseMarkerColor)) { $cfg['BrowseMarkerColor'] = $cfgBrowseMarkerColor; unset($cfgBrowseMarkerColor); } else if (isset($cfg['BrowseMarkRow'])) {