Fixed a parse error.

This commit is contained in:
Loïc Chapeaux
2002-05-18 20:56:54 +00:00
parent 3df6a20ef5
commit ac72eff066
2 changed files with 2 additions and 1 deletions

View File

@@ -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 <robbat2@users.sourceforge.net>
* config.inc.php3, libraries/common.lib.php3: IP-based Allow/Deny code

View File

@@ -37,7 +37,7 @@ unset($cfgConfirm);
if (!isset($cfgLoginCookieRecall)) {
$cfg['LoginCookieRecall'] = TRUE;
} else
} else {
$cfg['LoginCookieRecall'] = $cfgLoginCookieRecall;
unset($cfgLoginCookieRecall);
}