Home » Authentication » LiveUser » Bug #5110
getProperty() issue
Details
| Submitted | 2005-08-16 18:14 UTC |
|---|---|
| From | dv at allyoucanthink dot de |
| Assigned | lsmith |
| Status | Closed |
| Package | LiveUser |
| PHP Version | Irrelevant |
| OS | Irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2005-08-16 18:14 UTC] dv at allyoucanthink dot de
Description:
------------
$lu->getProperty('idleTime') returns always null due to following reason:
Auth/Common.php
Line 517
$what = strtolower($what);
...
} elseif (isset($this->$what)) {
$that = $this->$what;
}
isset($this->$what) is always false couse we do have
$this->idleTime and not $this->idletime within LiveUser_Auth_Common class...