Fix unknown sessid (dependent of php's version)
This commit is contained in:
parent
121c5666f8
commit
4f604f55c5
1 changed files with 4 additions and 0 deletions
|
|
@ -62,6 +62,10 @@ if ( isset($_GET["PHPSESSID"] )) {
|
|||
if ( isset($_POST["PHPSESSID"] )) {
|
||||
$sessid=$_POST["PHPSESSID"];
|
||||
}
|
||||
if ( isset( $_REQUEST['PHPSESSID'])) {
|
||||
$sessid = $_REQUEST['PHPSESSID'];
|
||||
}
|
||||
|
||||
|
||||
if ( isset ($_GET["action"]) ) {
|
||||
$action=$_GET["action"];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue