PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Mail » Mail_Mime » Bug #6712

Returning references

Details

Submitted2006-02-07 10:17 UTC
Fromsteveh at brendata dot co dot uk
Assignedcipri
StatusBogus
PackageMail_Mime
PHP Version5.1.2
OSWindows 2003
Roadmaps(Not assigned)

Comments

[2006-02-07 10:17 UTC] steveh at brendata dot co dot uk

Description:
------------
There are a number of places in the code which need the same edit as other pear packages due to reference returns.

return new xxxx

needs to be

$newObj =& new xxxx
return $newObj;