cookie login does not work if LoginCookieValidity is not defined

This commit is contained in:
Marc Delisle
2004-03-01 18:31:21 +00:00
parent 73d892c251
commit 6ce5dfa493
2 changed files with 4 additions and 1 deletions

View File

@@ -7,6 +7,9 @@ $Source$
2004-03-01 Marc Delisle <lem9@users.sourceforge.net>
### 2.5.6 released from branch MAINT_2_5
* libraries/common.lib.php: change Revision number to trigger execution
of compatibility module config_import.lib.php, because cookie
login does not work if LoginCookieValidity is not defined
2004-02-29 Alexander M. Turek <howcanisleepwithyourvoiceinmyhead@derrabus.de>
* tbl_select.php: Fixed bug #887505 (PMA does not add MySQL charsets to

View File

@@ -136,7 +136,7 @@ if (isset($cfg['FileRevision'])) {
} else {
$cfg['FileRevision'] = array(1, 1);
}
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 6)) {
if ($cfg['FileRevision'][0] < 2 || ($cfg['FileRevision'][0] == 2 && $cfg['FileRevision'][1] < 8)) {
require_once('./libraries/config_import.lib.php');
}