From: garvinhicking Date: Fri, 19 Aug 2005 09:34:20 +0000 (+0000) Subject: Wrong PEAR path. X-Git-Tag: 0.8.4~4 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=46a1267b7c2cce072c56079c2045f6c9e1ad8122;p=s9y.git Wrong PEAR path. --- 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); }