Small fix for php3 support.

This commit is contained in:
skeeter 2001-07-28 13:10:17 +00:00
parent 295e36cccf
commit 2c726647f5

View File

@ -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;
}