Sep 27th, 2009, 12:35 AM
Just to recap on this thread the solution for anyone else who might run into the problem... via Ben and azparrothead...
The code line involving the IF needs the addition of a "!" before the ft_api_check_submission_is_unique:
The code line involving the IF needs the addition of a "!" before the ft_api_check_submission_is_unique:
PHP Code:
if (!ft_api_check_submission_is_unique(1, $criteria, $files["form_tools_submission_id"]))
{
$already_exists = true;
}
else
{
ft_api_process_form($params);
}