This is a great block. Working just fine except I get the following error:
Quote: ›
Warning: extract() expects first argument to be an array in init.php on line 60
Warning: extract() expects first argument to be an array in init.php on line 61
Warning: extract() expects first argument to be an array in init.php on line 62
Warning: Invalid argument supplied for foreach() in init.php on line 64
I following is from the init.php file from the Gallery module:
Quote: ›
if (!$gallery->register_globals) {
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
foreach($HTTP_POST_FILES as $key => $value) {
${$key."_name"} = $value["name"];
${$key."_size"} = $value["size"];
${$key."_type"} = $value["type"];
${$key} = $value["tmp_name"];
}
}
I assume the global variables have to be updated but I'm not sure in which php file.