diff --git a/ChangeLog b/ChangeLog index dc0f64b957..b526b3814e 100755 --- a/ChangeLog +++ b/ChangeLog @@ -20,6 +20,8 @@ $Source$ count - fixes #735441. * libraries/display_tbl.lib.php3: Fix not displaying content of TEXT fields (was treated like BLOB). + * libraries/common.lib.php3: $cfg['Server']['AllowDeny']['order'] might + be undefined. 2003-05-09 Marc Delisle * libraries/display_tbl.lib.php3: bug 731367: hexifying all diff --git a/libraries/common.lib.php3 b/libraries/common.lib.php3 index c0bc48cf31..848ee69271 100644 --- a/libraries/common.lib.php3 +++ b/libraries/common.lib.php3 @@ -751,7 +751,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold} // http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/aaa/mod_access.c?rev=1.37&content-type=text/vnd.viewcvs-markup // Look at: "static int check_dir_access(request_rec *r)" // Robbat2 - May 10, 2002 - if (isset($cfg['Server']['AllowDeny']) && $cfg['Server']['AllowDeny']['order']) { + if (isset($cfg['Server']['AllowDeny']) && isset($cfg['Server']['AllowDeny']['order'])) { include('./libraries/ip_allow_deny.lib.php3'); $allowDeny_forbidden = FALSE; // default