Hi-
I found a bug in gravity forms that I thought had been fixed but is still in the latest release.
form_display.php line 77
if(is_array($confirmation) && isset($confirmation["redirect"])){
header("Location: {$confirmation["redirect"]}");
do_action("gform_post_submission", $lead, $form);
do_action("gform_post_submission_{$form["id"]}", $lead, $form);
exit;
}
The header function should be moved AFTER the action calls as they will not be called with this current ordering.
Let me know if I can answer any questions or give more detail.
Thanks,
Kevin
PS Is there another place for bug submissions?