|
|
| |
1. There is a bug on line847 |
|
Reply |
|
|
 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 |
|
|
 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 |
|
|
 Ska-Man | 2011-11-11 09:40:09 - In reply to message 1 from twwy |
The Bug is now fixed
Thanks |
|