Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.10.15

Bug #3966 Improper path in PEAR/PackageFile/v2.php
Submitted: 2005-03-26 19:48 UTC
From: adamg at pld-linux dot org Assigned: cellog
Status: Closed Package: PEAR
PHP Version: Irrelevant OS: Irrelevant
Roadmaps: (Not assigned)    
Subscription  


 [2005-03-26 19:48 UTC] adamg at pld-linux dot org
Description: ------------ In PEAR/PackageFile/v2.php, in the beginning of the function &getRW() (around line 1513) there is this code: == code if (!class_exists('PEAR_PackageFile_v2_rw')) { require_once 'PEAR/PackageFile/Generator/v2/rw.php'; } == code and PEAR/PackageFile/Generator/v2/rw.php does not exist. Instead, it should be: == code if (!class_exists('PEAR_PackageFile_v2_rw')) { require_once 'PEAR/PackageFile/v2/rw.php'; } == code

Comments

 [2005-03-27 23:18 UTC] cellog
crap :) Thanks for the report, I'll fix for the next release.
 [2005-03-28 17:56 UTC] cellog
This bug has been fixed in CVS. In case this was a documentation problem, the fix will show up at the end of next Sunday (CET) on pear.php.net. In case this was a pear.php.net website problem, the change will show up on the website in short time. Thank you for the report, and for helping us make PEAR better.