Nov 4th, 2009, 5:37 PM
This was actually more than one issue.
The empty fields after validation failure was fixed actually using the solution Ben gave me some time ago, but for some reason I lost the more recent copy and based these forms in that outdated one.
The fix was to replace this
The empty fields after validation failure was fixed actually using the solution Ben gave me some time ago, but for some reason I lost the more recent copy and based these forms in that outdated one.
The fix was to replace this
PHP Code:
<?php
ft_api_process_form($params);
}
}
}
with this
PHP Code:
<?php
ft_api_process_form($params);
$fields = array_merge($fields, $_SESSION["form_tools_form"]);
} else {
$fields = array_merge($fields, $_POST);
}
}
