bug #1193223, undefined index htmlexcel_null

This commit is contained in:
Marc Delisle
2005-05-02 16:49:38 +00:00
parent 40e3d502af
commit 179c05acfb
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2005-05-02 Marc Delisle <lem9@users.sourceforge.net>
* export.php: bug #1123284, avoid double compression when
zlib.output_compression is On, thanks to unclef at users.sourceforge.net
* libraries/common.lib.php: bug #1193223, undefined index htmlexcel_null,
thanks to Ryan Schmidt - ryandesign
2005-05-01 Marc Delisle <lem9@users.sourceforge.net>
* server_status.php: bug #1193225, missing </ul>

View File

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