PHP Classes

There is a bug on line847

Recommend this page to a friend!

      My Session  >  All threads  >  There is a bug on line847  >  (Un) Subscribe thread alerts  
Subject:There is a bug on line847
Summary:bug
Messages:3
Author:twwy
Date:2011-08-14 10:11:14
Update:2011-11-11 09:40:09
 

  1. There is a bug on line847   Reply   Report abuse  
Picture of twwy twwy - 2011-08-14 10:11:15
There is a bug on line847

$this->hijackSalt = $config["antiHijack"];

Undefined index!!

I change the "antiHijack" to "ANTI_HIJACKING_SALT", it works.
$this->hijackSalt = $config["ANTI_HIJACKING_SALT"];

Twwy
je@lroemy.net

  2. Re: There is a bug on line847   Reply   Report abuse  
Picture of Vovka Vovka - 2011-11-04 10:28:38 - In reply to message 1 from twwy
$this->hijackSalt = $config["antiHijack"];
Rename to:
$this->hijackSalt = $config["ANTI_HIJACKING_SALT"];

  3. Re: There is a bug on line847   Reply   Report abuse  
Picture of Ska-Man Ska-Man - 2011-11-11 09:40:09 - In reply to message 1 from twwy
The Bug is now fixed

Thanks