From 179c05acfba84678cb88225bad6fb48e6222bc29 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 2 May 2005 16:49:38 +0000 Subject: [PATCH] bug #1193223, undefined index htmlexcel_null --- ChangeLog | 2 ++ libraries/common.lib.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 83b226e08..f130a3b79 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ $Source$ 2005-05-02 Marc Delisle * 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 * server_status.php: bug #1193225, missing diff --git a/libraries/common.lib.php b/libraries/common.lib.php index f1ae4c0b5..0bb0b025d 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -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'); }