PEAR is archived and read-only

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

Home » Networking » Net_FTP » Bug #1446

Bug in isPassive()

Details

Submitted2004-05-19 19:31 UTC
Frompear dot 20 dot fab at spamgourmet dot com
Assignedtoby
StatusClosed
PackageNet_FTP
PHP Version4.3.1
OSWin 2000
Roadmaps(Not assigned)

Comments

[2004-05-19 19:31 UTC] pear dot 20 dot fab at spamgourmet dot com

Description:
------------
A little typo in isPassive()

Reproduce code:
---------------
function isPassive()
{
return $this->_passive;
}

should be

function isPassive()
{
return $this->_passv;
}