ZF-7218: Examples incorrect
Description
22.2.14, has two examples of filter usage.
$filter = new Zend_Filter_RealPath(); $path = '/www/var/path/../../mypath'; $filtered = $filter->filter();
should actually read as:
$filter = new Zend_Filter_RealPath(); $path = '/www/var/path/../../mypath'; $filtered = $filter->filter($path);
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2009-07-07T08:32:41.000+0000
fixed in trunk, and will release with 1.9.0.