In the file /php-lib-stable/php/oohforms.inc you have
there is this portion of code:
18 function marshal_dispatch($m, $func) {
19 global $HTTP_POST_VARS, $HTTP_POST_FILES;
24 } elseif (isset($HTTP_POST_VARS[$vname])) {
25 $val = $HTTP_POST_VARS[$vname];
26 } elseif (isset($HTTP_POST_FILES[$vname])) {
27 $val = $HTTP_POST_FILES[$vname];
The HTTP_* are deprecated and by default disabled in
current versions of PHP-5, thus resulting in not
working forms anymore.
Please update this (and release a bugfix version of it)
reading
$_POST instead of $HTTP_POST_VARS
$_FILES instead of $HTTP_POST_FILES
In this case, you also will not need the global in line
18, since the $_-variables are super-globals.
Logged In: NO
Was Here <The Phantom King>