From 46a1267b7c2cce072c56079c2045f6c9e1ad8122 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Fri, 19 Aug 2005 09:34:20 +0000 Subject: [PATCH] Wrong PEAR path. --- bundled-libs/Cache/BUNDLE_NOTICE | 2 +- bundled-libs/Cache/Lite.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bundled-libs/Cache/BUNDLE_NOTICE b/bundled-libs/Cache/BUNDLE_NOTICE index 2fab53a..d33d37b 100644 --- a/bundled-libs/Cache/BUNDLE_NOTICE +++ b/bundled-libs/Cache/BUNDLE_NOTICE @@ -1,7 +1,7 @@ - Replace: Lite.php: include_once('PEAR.php'); -include_once dirname(__FILE__) . '/../../PEAR.php'; +include_once dirname(__FILE__) . '/../PEAR.php'; Output.php, Function.php: require_once('Cache/Lite.php'); diff --git a/bundled-libs/Cache/Lite.php b/bundled-libs/Cache/Lite.php index b8d47f4..fbe93bf 100644 --- a/bundled-libs/Cache/Lite.php +++ b/bundled-libs/Cache/Lite.php @@ -494,7 +494,7 @@ class Cache_Lite */ function raiseError($msg, $code) { - include_once(dirname(__FILE__) . '/../../PEAR.php'); + include_once(dirname(__FILE__) . '/../PEAR.php'); PEAR::raiseError($msg, $code, $this->_pearErrorMode); } -- 2.39.5