Ozzy47
Well-known member
Okay,for the
I can fix it for 2.1.3 no problem, but then it won't work for 2.1.2.
So the question is, is their a way to write the find and the replace to accommodate two different versions?
2.1.2 Find:
2.1.3 Find:
conversation_add
template, I have a template modification set up. It works in XF2.1.2, but not in XF2.1.3.I can fix it for 2.1.3 no problem, but then it won't work for 2.1.2.
So the question is, is their a way to write the find and the replace to accommodate two different versions?
2.1.2 Find:
HTML:
<xf:tokeninputrow name="recipients" value="{$to}" href="{{ link('members/find') }}"
rowtype="fullWidth"
label="{{ phrase('recipients') }}"
explain="{{ phrase('separate_names_with_comma') }}" />
2.1.3 Find:
HTML:
<xf:tokeninputrow name="recipients" value="{$to}" href="{{ link('members/find') }}"
rowtype="fullWidth"
label="{{ ($maxRecipients == -1 OR $maxRecipients > 1) ? phrase('recipients') : phrase('recipient') }}"
max-tokens="{{ ($maxRecipients > -1) ? $maxRecipients : null }}"
explain="{{ ($maxRecipients == -1 OR $maxRecipients > 1) ? phrase('separate_names_with_comma') : null }}" />