From 2c726647f5cf752be06cdbfead37b58a70568b64 Mon Sep 17 00:00:00 2001 From: skeeter Date: Sat, 28 Jul 2001 13:10:17 +0000 Subject: [PATCH] Small fix for php3 support. --- phpgwapi/inc/class.sessions.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpgwapi/inc/class.sessions.inc.php b/phpgwapi/inc/class.sessions.inc.php index 6878d48f6b..5266983910 100644 --- a/phpgwapi/inc/class.sessions.inc.php +++ b/phpgwapi/inc/class.sessions.inc.php @@ -588,6 +588,8 @@ if (!empty($new_extravars)) $new_extravars .= '&'; $new_extravars .= "$key=$value"; } + // This needs to be explictly reset to a string variable type for PHP3 + settype($extravars,'string'); $extravars = $new_extravars; }