Apr 17th, 2012, 11:26 AM
Hi Firedragon,
Interesting! Unfortunately, there's nothing in the script to allow for this. However, if you don't mind hacking it a bit and are well aware that future upgrades may overwrite this change, you can add the functionality like so:
Edit the /admin/forms/edit_submission.php file and find these lines on 36-39:
After those, add an else-clause:
That should redirect you back to the main submissions page after you update a submission.
- Ben
Interesting! Unfortunately, there's nothing in the script to allow for this. However, if you don't mind hacking it a bit and are well aware that future upgrades may overwrite this change, you can add the functionality like so:
Edit the /admin/forms/edit_submission.php file and find these lines on 36-39:
PHP Code:
if (!$g_success)
{
$failed_validation = true;
}
After those, add an else-clause:
PHP Code:
if (!$g_success)
{
$failed_validation = true;
}
else
{
header("location: submissions.php");
exit;
}
That should redirect you back to the main submissions page after you update a submission.
- Ben