Home » PEAR » PEAR » Bug #3966
Improper path in PEAR/PackageFile/v2.php
Details
| 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) |
Comments
[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