parse error

This commit is contained in:
Marc Delisle
2002-06-19 14:57:08 +00:00
parent a8d9863e7a
commit ddde729980
2 changed files with 4 additions and 3 deletions

View File

@@ -18,6 +18,7 @@ $Source$
* lang/dutch updates, thanks to Ivo Teel.
* lang/swedish updates, thanks to Bj<42>rn T. Hallberg
* lang/galician updates, thanks to Xos<6F> Calvo
* libraries/config_import.lib.php3, fixed 3 parse errors
2002-06-19 Robin Johnson <robbat2@users.sourceforge.net>
* libraries/charset_conversion.lib.php3,

View File

@@ -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'])) {