Hi,
Yes you'right! It is the line 248 and not 245 (Mercurial/TortoiseHG told me the wrong line).
I downloaded Visforms 3.5.4 two days ago, here :
www.vi-solutions.de/en/downloads-visform...omla-3-3-6-or-higher
(I clicked on the "Download Now" button).
The code I posted was the changed code.
Before my changes, the line was:
Code:
$this->setRedirect(JRoute::_("index.php?option=com_visforms&view=visforms&layout=message&id=".$visform->id.$tmpl));
And after my changes, the line is:
Code:
$this->setRedirect("index.php?option=com_visforms&view=visforms&layout=message&id=".$visform->id.$tmpl);
Before my changes, the forms display "Form is missing" and the URL is something like that:
Code:
http://xxxxxxxxxxxxxxxx.com/index.php/fr/?option=com_visforms&view=visforms&layout=message&id=1
After my changes, the forms display well the texte message I configured and the URL is something like that:
Code:
http://xxxxxxxxxxxxxxxx.com/index.php/fr/?option=com_visforms&view=visforms&layout=message&id=1
So, there is a problem with JRoute and the character "&" which is transformed in "&".