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:
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:
<?php
if (!$g_success)
{
$failed_validation = true;
}
After those, add an else-clause:
PHP Code:
<?php
if (!$g_success)
{
$failed_validation = true;
}
else
{
header("location: submissions.php");
exit;
}
