PEAR is archived and read-only

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

Home » Authentication » LiveUser » Bug #2491

LiveUser::(factory/singleton/init) $remember param does nothing

Details

Submitted2004-10-11 07:19 UTC
Fromscragz at hotmail dot com
Assignedlsmith
StatusClosed
PackageLiveUser
PHP VersionIrrelevant
OSIrrelevant
Roadmaps(Not assigned)

Comments

[2004-10-11 07:19 UTC] scragz at hotmail dot com

Description:
------------
The LiveUser::factory (and singleton) method takes $remember as the 5th parameter even though it is not used anywhere in the method.

Reproduce code:
---------------
- $init = $obj->init($handle, $passwd, $logout);
+ $init = $obj->init($handle, $passwd, $logout, $remember);

That's probably what's supposed to happen. I'm not sure if it works as expected.

[2004-10-11 07:37 UTC] scragz at hotmail dot com

Just tested this and it looks like LiveUser::init isn't passing $remember through either.

In init:
- $lulogin = $this->tryLogin($handle, $passwd);
+ $lulogin = $this->tryLogin($handle, $passwd, $remember);

Then that will be passed to tryLogin() which will finally do something with it.

[2004-10-11 11:07 UTC] smith at backendmedia dot com

This bug has been fixed in CVS.

In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pear.php.net.

In case this was a pear.php.net website problem, the change will show
up on the website in short time.

Thank you for the report, and for helping us make PEAR better.