The helper_action template has been modified so that the forum staff have a predefined dropdown menu from which to select the reason for deleting a post.
I'm trying to set it up so that one of the options in the middle is the default choice. However when I do this by adding selected="selected" I get the error message "Line 59: Syntax error - Template name: public:helper_action."
Can anyone help me please, l'm sure this is standard Html and indeed is how this dropdown appeared on xF 1.5.
Here is an example of the current code.
I'm trying to set it up so that one of the options in the middle is the default choice. However when I do this by adding selected="selected" I get the error message "Line 59: Syntax error - Template name: public:helper_action."
Can anyone help me please, l'm sure this is standard Html and indeed is how this dropdown appeared on xF 1.5.
Here is an example of the current code.
Code:
<xf:select name="{$reasonName}" value="Reason">
<xf:option value="1 - Reason 1">1 - Reason 1</xf:option>
<xf:option value="2 - Reason 2">2 - Reason 2</xf:option>
<xf:option value="3 - Reason 3">3 - Reason 3</xf:option>
<xf:option value="4 - Reason 4">4 - Reason 4</xf:option>
<xf:option value="5 - Reason 5">5 - Reason 5</xf:option>
</xf:select>