While experimenting and exploring "ChronoForms V2.5 J1.5 RC3.1" in "Jommla! 1.5.3", I have encountered the following issue. I have put URL as a thanks page into FormURLs/RedirectURL and simultaneously created a table for saving data, i.e., generated AutoGenerated code. In that configuration a particular form redirects to the respective URL, but does not save form's data into the table. The expected functionality should be (in my opinion): Saving form's data and then redirection to a URL in that consecutive order. However, the redirection supresses the saving data. I consider this behaviour as a bug.
In order to solve this problem (for me for the time being), I went through the core of ChronoForms component in the file "chronocontact.php" and found out, that the code block "Redirect the page if requested" (line 575) is run immediately after processing the first parameter ($paramsvalues->plugins_order) and so remaining parameters are not processed including the autogenerated code. All in all, the redirection code block should be located out of the loop "foreach($ixx)", i.e., after the closing curly bracket (line 581). Having put the block there, the form saves data and redirects as I have expected.
