PEAR is archived and read-only

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

Home » Authentication » LiveUser » Bug #5110

getProperty() issue

Details

Submitted2005-08-16 18:14 UTC
Fromdv at allyoucanthink dot de
Assignedlsmith
StatusClosed
PackageLiveUser
PHP VersionIrrelevant
OSIrrelevant
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...