Home » Authentication » LiveUser » Bug #1417
missing paramater in isError in LiveUser::singleton
Details
| Submitted | 2004-05-16 13:18 UTC |
|---|---|
| From | simon dot hamilton at ntlworld dot com |
| Assigned | dufuz |
| Status | Closed |
| Package | LiveUser |
| PHP Version | Irrelevant |
| OS | n/a |
| Roadmaps | (Not assigned) |
Comments
[2004-05-16 13:18 UTC] simon dot hamilton at ntlworld dot com
Description:
------------
LiveUser.php
Line 401:
--------------
if(PEAR::isError()) {
return $obj;
}
should be:
--------------
if(PEAR::isError($obj)) {
return $obj;
}