Looking at adminfunctions.php, print_submit_row calls print_table_footer, which looks like it only prints out the table tags if the global "$tableadded" is true.
ETA:.. and it looks like print_form_header either calls print_table_start or else sets $tableadded to false (and you're passing "false" for the 4th parameter, so $tableadded is getting set to false).
Maybe you can just move the print_table_start after the print_form_header?
|