From ac72eff066453dd08d17975d11e634442c69e1e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Sat, 18 May 2002 20:56:54 +0000 Subject: [PATCH] Fixed a parse error. --- ChangeLog | 1 + libraries/config_import.lib.php3 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 35d02432f..4ce31d305 100755 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,7 @@ $Source$ * fpdf/fpdf.php3, lines 1205+: ensure user agent is detected whatever are the PHP version and the "register globals" value. * pdf_schema.php3; lang/*: coding standards and PDF error handling. + * config_import.lib.php3: fixed a parse error. 2002-05-17 Robin Johnson * config.inc.php3, libraries/common.lib.php3: IP-based Allow/Deny code diff --git a/libraries/config_import.lib.php3 b/libraries/config_import.lib.php3 index 5e1a7953d..49c681e94 100644 --- a/libraries/config_import.lib.php3 +++ b/libraries/config_import.lib.php3 @@ -37,7 +37,7 @@ unset($cfgConfirm); if (!isset($cfgLoginCookieRecall)) { $cfg['LoginCookieRecall'] = TRUE; -} else +} else { $cfg['LoginCookieRecall'] = $cfgLoginCookieRecall; unset($cfgLoginCookieRecall); }