Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.6.4

Bug #1802 getAuth() is always Bool(false)
Submitted: 2004-07-06 03:58 UTC
From: php at gonzo dot ch Assigned: yavo
Status: Closed Package: Auth
PHP Version: 4.3.7 OS: Linux
Roadmaps: (Not assigned)    
Subscription  


 [2004-07-06 03:58 UTC] php at gonzo dot ch
Description: ------------ After logging in, the getAuth()-function give always false as return. I got the right result, as I changed in Auth.php function getAuth() { if ( isset($this->session['registered']) ) { $this->session['registered']; } return false; } to function getAuth() { if ( isset($this->session['registered']) ) { return $this->session['registered']; } return false; } Package: Auth-1.3.0r2 Roman

Comments

 [2004-07-06 06:30 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!
 [2004-07-06 06:50 UTC] php at gonzo dot ch
Thanks for your great work. Roman