diff options
author | chriskl | 2005-12-07 01:32:47 +0000 |
---|---|---|
committer | chriskl | 2005-12-07 01:32:47 +0000 |
commit | ab8d02848d3f78aad5a23eae2a1c283f2381f90b (patch) | |
tree | 61a42c7d28647870632b957fe2e12e226fe24046 | |
parent | 4d31ae04e3be9d8f54e53fa788e865b72395c13d (diff) |
Backport: Fix non-absolute include
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | libraries/lib.inc.php | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -6,6 +6,7 @@ Version 4.0.2 Bugs * Fix error reporting during SQL script execution +* Fix decorator.inc.php include for open_basedir restricted PHP Version 4.0.1 ------------- diff --git a/libraries/lib.inc.php b/libraries/lib.inc.php index 06c9ac58..65eb789a 100644 --- a/libraries/lib.inc.php +++ b/libraries/lib.inc.php @@ -3,9 +3,9 @@ /** * Function library read in upon startup * - * $Id: lib.inc.php,v 1.105.2.3 2005/11/23 04:31:10 chriskl Exp $ + * $Id: lib.inc.php,v 1.105.2.4 2005/12/07 01:32:47 chriskl Exp $ */ - include_once('decorator.inc.php'); + include_once('./libraries/decorator.inc.php'); include_once('./lang/translations.php'); // Set error reporting level to max |