Can't be
Let's take a look at adminfunctions.php:
PHP Code:
function print_form_header($phpscript = '', $do = '', $uploadform = false, $addtable = true, $name = 'cpform', $width = '90%', $target = '', $echobr = true, $method = 'post') {
...
construct_hidden_code('do', $do);
...
}
...
function construct_hidden_code($name, $value = '', $htmlise = 1)
...
$GLOBALS["_HIDDENFIELDS"]["$name"] = iif($htmlise, htmlspecialchars_uni($value), $value);
...
}
...
function print_submit_row($submitname = '', $resetname = '_default_', , $colspan = 2, $goback = '', $extra = '') {
...
print_table_footer($colspan, $tfoot, $tooltip);
}
...
function print_table_footer($colspan = 2, $rowhtml = '', $tooltip = '', $echoform = true) {
...
if ($echoform)
{
print_hidden_fields();
...
}
}