From 5eea01f97d308b344d8b840475cce399adf9bff0 Mon Sep 17 00:00:00 2001 From: Stan Pinte Date: Sun, 6 Mar 2005 13:52:20 +0000 Subject: [PATCH] Corrected error: undefined PHPSESSID --- include/user_common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/user_common.php b/include/user_common.php index 4594b53fc..93830d5c5 100644 --- a/include/user_common.php +++ b/include/user_common.php @@ -320,7 +320,8 @@ function ListJrn($p_cn,$p_jrn,$p_where="",$p_array=null) if ($Max==0) return "No row selected"; $r.=""; - $l_sessid=(isset($_POST['PHPSESSID']))?$_POST['PHPSESSID']:$_GET['PHPSESSID']; + //$l_sessid=(isset($_POST['PHPSESSID']))?$_POST['PHPSESSID']:$_GET['PHPSESSID']; + $l_sessid=$_REQUEST['PHPSESSID']; $r.=""; $r.=""; $r.="";
Internal Date