Home » Networking » Net_FTP » Bug #983
Code syntax error
Details
| Submitted | 2004-03-09 16:01 UTC |
|---|---|
| From | jezmond5 at yahoo dot com |
| Assigned | toby |
| Status | Closed |
| Package | Net_FTP |
| PHP Version | 4.3.4 |
| OS | Windows 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);
}