May 26th, 2011, 1:43 PM
(Aug 15th, 2009, 2:21 PM)Ben Wrote: Hey Speny,
Ah! That's fine - actually no, don't delete it. Instead, just add a new key-value pair to the $params you're passing to ft_api_process_form (the last row - ignore the other rows, they're just to show the context & are probably different for you):
PHP Code:$params = array(
"submit_button" => "submit_button_name_attribute",
"next_page" => "next_page.php",
"form_data" => $_POST,
"no_sessions_url" => "first_page_in_form.php",
"may_update_finalized_submissions" => true
);
ft_api_process_form($params);
The "may_update_finalized_submissions" setting will override the default behaviour & allow you to update a finalized submission. Hope that helps!
- Ben
After adding the '"may_update_finalized_submissions" => true', how does one go about finalizing the file?