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

Bug #19105 Notice error in File_Archive.php
Submitted: 2011-12-07 21:33 UTC
From: williamlp Assigned:
Status: Open Package: File_Archive (version 1.5.4)
PHP Version: 5.3.6 OS: Centos
Roadmaps: (Not assigned)    
Subscription  


 [2011-12-07 21:33 UTC] williamlp (William Parker)
Description: ------------ Notice: Only variable references should be returned by reference in \File\Archive.php on line 580 An identical problem has been fixed twice in the same method already, e.g. http://pear.php.net/bugs/bug.php?id=7650 This is fixed by the following patch, as has been used elsewhere in the file: @@ -577,7 +577,8 @@ class File_Archive return $obj; } } else if (is_array($source)) { - return File_Archive::readMulti($source); + $obj = File_Archive::readMulti($source); + return $obj; } else {

Comments