parse error
This commit is contained in:
@@ -18,6 +18,7 @@ $Source$
|
|||||||
* lang/dutch updates, thanks to Ivo Teel.
|
* lang/dutch updates, thanks to Ivo Teel.
|
||||||
* lang/swedish updates, thanks to Bj<42>rn T. Hallberg
|
* lang/swedish updates, thanks to Bj<42>rn T. Hallberg
|
||||||
* lang/galician updates, thanks to Xos<6F> Calvo
|
* 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>
|
2002-06-19 Robin Johnson <robbat2@users.sourceforge.net>
|
||||||
* libraries/charset_conversion.lib.php3,
|
* libraries/charset_conversion.lib.php3,
|
||||||
|
@@ -39,7 +39,7 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){
|
|||||||
$cfg['Servers'][$i]['socket'] = '';
|
$cfg['Servers'][$i]['socket'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($cfg['Servers'][$i]['connect_type']) {
|
if (!isset($cfg['Servers'][$i]['connect_type'])) {
|
||||||
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
$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;
|
$cfg['UseDbSearch'] = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -475,7 +475,7 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')){
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($cfg['BrowseMarkerColor'])) {
|
if (!isset($cfg['BrowseMarkerColor'])) {
|
||||||
if (isset($cfgBrowseMarkerColor) {
|
if (isset($cfgBrowseMarkerColor)) {
|
||||||
$cfg['BrowseMarkerColor'] = $cfgBrowseMarkerColor;
|
$cfg['BrowseMarkerColor'] = $cfgBrowseMarkerColor;
|
||||||
unset($cfgBrowseMarkerColor);
|
unset($cfgBrowseMarkerColor);
|
||||||
} else if (isset($cfg['BrowseMarkRow'])) {
|
} else if (isset($cfg['BrowseMarkRow'])) {
|
||||||
|
Reference in New Issue
Block a user