(Patch) Session_start gives an error.
-
I was getting an error in my php errors (strict error) about the session_start being called again, when it was already called.
Fixed it by changing line 31 of file chap-secure-login/chapsecurelogin.php from
session_start();
== to ==
if ( !session_id() )
session_start();
- The topic ‘(Patch) Session_start gives an error.’ is closed to new replies.