View Single Post
Old 10-11-2012, 09:51 PM   PM User | #21
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,650
Thanks: 4
Thanked 2,451 Times in 2,420 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
Yes that line is in register.php, but I mean that $reg hasn't been assigned to anything. If you enable your error reporting:
Code:
ini_set('display_errors', 1);
error_reporting(E_ALL);
You should trigger the error:
Code:
Notice: Undefined variable: $reg in xx/register.php on line ?
Therefore assigning $_SESSION['user_id'] to null. Null will not pass an isset check, so the loggedin will return false.
Fou-Lu is offline   Reply With Quote