From 4f604f55c57d2a232fbcabe28116f50970fb71ef Mon Sep 17 00:00:00 2001 From: sparkyx Date: Wed, 29 Jun 2005 12:57:02 +0000 Subject: [PATCH] Fix unknown sessid (dependent of php's version) --- html/form.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/form.php b/html/form.php index a846029c2..d3094dc1e 100644 --- a/html/form.php +++ b/html/form.php @@ -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"];