May 8th, 2010, 10:24 AM
Hi Mr Twin,
Try changing this line:
to this:
The problem is that that second parameter of the function. If set to true, it deletes ALL unfinalized submissions in the database up to the very moment. This is generally a bad idea - if there are any unfinished forms currently being submitted those users will get the 305 error.
Hope this helps!
- Ben
Try changing this line:
PHP Code:
ft_api_delete_unfinalized_submissions(3, true);
to this:
PHP Code:
ft_api_delete_unfinalized_submissions(3, false);
The problem is that that second parameter of the function. If set to true, it deletes ALL unfinalized submissions in the database up to the very moment. This is generally a bad idea - if there are any unfinished forms currently being submitted those users will get the 305 error.
Hope this helps!
- Ben