Apr 26th, 2012, 12:07 PM
(This post was last modified: Apr 26th, 2012, 12:25 PM by michatmaster7.)
Hey Ben -
Just upgraded to 2.2.3 and it appears that when doing an Add Form, then selecting "External" - when I click on Continue, it loops back to the list of forms.
Um??
I narrowed it down to this file, which I replaced with the one from the last version of the core, so that I could add the form I'm working on at the moment.
formtools\admin\forms\add\step1.php
I think I've narrowed it to this bit of new code you added, but I'm no PHP person, so I'll let you figure that one out...lol.
If you happen to fix this page, could you paste the entire page in PHP brackets here so I can just copy and paste, rather than having to download and upload a new core file?
Just upgraded to 2.2.3 and it appears that when doing an Add Form, then selecting "External" - when I click on Continue, it loops back to the list of forms.
Um??
I narrowed it down to this file, which I replaced with the one from the last version of the core, so that I could add the form I'm working on at the moment.
formtools\admin\forms\add\step1.php
I think I've narrowed it to this bit of new code you added, but I'm no PHP person, so I'll let you figure that one out...lol.
PHP Code:
$num_forms = ft_get_form_count();
if ($num_forms > $g_max_ft_forms) // note it's not >=
{
header("location: ../index.php");
exit;
}
If you happen to fix this page, could you paste the entire page in PHP brackets here so I can just copy and paste, rather than having to download and upload a new core file?