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 #983

Code syntax error

Details

Submitted2004-03-09 16:01 UTC
Fromjezmond5 at yahoo dot com
Assignedtoby
StatusClosed
PackageNet_FTP
PHP Version4.3.4
OSWindows XP
Roadmaps(Not assigned)

Comments

[2004-03-09 16:01 UTC] jezmond5 at yahoo dot com

Description:
------------
Hey guys just wanted to make you aware of a coding syntax problem in Net_FTP package. It's line 221, the raiseError() function is simply mispelled (think it was raiseErrro()).

Cheers Chris...

Reproduce code:
---------------
if (!$res) {
return $this->raiseErrro("Unable to login", 0);
}

Expected result:
----------------
if (!$res) {
return $this->raiseError("Unable to login", 0);
}