imthebest
Well-known member
On template warning_info I have removed the following block:
However the template comparison feature says this:
Is this normal? If so, it ends being pretty confusing.
Thanks.
Code:
<xen:if is="{$canExpireWarning}">
<form action="{xen:link warnings/expire, $warning}" method="post">
<dl class="ctrlUnit">
<dt></dt>
<dd><ul>
<li><label><input type="radio" name="expire" value="now" checked="checked" /> {xen:phrase expire_now}</label></li>
<li><label><input type="radio" name="expire" value="future" id="ExpireWarningFuture_{$warning.warning_id}" class="Disabler" /> {xen:phrase expire_in_time}:</label>
<ul id="ExpireWarningFuture_{$warning.warning_id}_Disabler">
<li>
<input type="text" size="5" name="expiry_length" value="1" class="textCtrl autoSize" />
<select name="expiry_unit" class="textCtrl autoSize">
<option value="hours">{xen:phrase hours}</option>
<option value="days" selected="selected">{xen:phrase days}</option>
<option value="weeks">{xen:phrase weeks}</option>
<option value="months">{xen:phrase months}</option>
</select>
</li>
</ul>
</li>
</ul></dd>
</dl>
<dl class="ctrlUnit submitUnit">
<dt></dt>
<dd>
<input type="submit" value="{xen:phrase update_warning}" class="button primary" />
</dd>
</dl>
<input type="hidden" name="_xfConfirm" value="1" />
<input type="hidden" name="redirect" value="{$redirect}" />
<input type="hidden" name="_xfToken" value="{$visitor.csrf_token_page}" />
</form>
</xen:if>
However the template comparison feature says this:
Is this normal? If so, it ends being pretty confusing.
Thanks.