Jon W
Well-known member
The quick_reply template uses the $formAction variable to determine where the form is sent to.
Due to the way that the <xen:set> function works, it is not possible to set it to be a link with any extra query-string parameters because & is replaced with .
One solution would be to replace:
with:
Alternatively, it may be that the <xen:set> function could be changed -- I can't quite tell if this is as designed.
Due to the way that the <xen:set> function works, it is not possible to set it to be a link with any extra query-string parameters because & is replaced with .
One solution would be to replace:
HTML:
<form action="{$formAction}" method="post" class="AutoValidator blendedEditor" data-optInOut="OptIn" id="QuickReply">
HTML:
<form action="{xen:raw $formAction}" method="post" class="AutoValidator blendedEditor" data-optInOut="OptIn" id="QuickReply">
Alternatively, it may be that the <xen:set> function could be changed -- I can't quite tell if this is as designed.