diff options
| author | lsces <lester@lsces.co.uk> | 2026-03-27 16:11:41 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-03-27 16:11:41 +0000 |
| commit | 465182f8a748c53cb9667146071d0fba6a90c3f8 (patch) | |
| tree | 9f7e9fdee322e7434b61a9ca6b5f554ebf282026 /templates/contact.tpl | |
| parent | d933b0644bd69a035e45346fcf1da3a97486f685 (diff) | |
| download | messages-465182f8a748c53cb9667146071d0fba6a90c3f8.tar.gz messages-465182f8a748c53cb9667146071d0fba6a90c3f8.tar.bz2 messages-465182f8a748c53cb9667146071d0fba6a90c3f8.zip | |
Figured what has been causing a problem with using && and || in smarty templates and related to mistake in processing {2} elements that should use curly brackets and not revert to square ones.V5-php84
Diffstat (limited to 'templates/contact.tpl')
| -rwxr-xr-x | templates/contact.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/contact.tpl b/templates/contact.tpl index 96a5dec..030e53a 100755 --- a/templates/contact.tpl +++ b/templates/contact.tpl @@ -16,7 +16,7 @@ <select name="priority" id="priority"> <option value="1" {if $priority eq 1}selected="selected"{/if}>{tr}1 -Lowest-{/tr}</option> <option value="2" {if $priority eq 2}selected="selected"{/if}>{tr}2 -Low-{/tr}</option> - <option value="3" {if $priority eq 3 or !$priority}selected="selected"{/if}>{tr}3 -Normal-{/tr}</option> + <option value="3" {if $priority eq 3 || !$priority}selected="selected"{/if}>{tr}3 -Normal-{/tr}</option> <option value="4" {if $priority eq 4}selected="selected"{/if}>{tr}4 -High-{/tr}</option> <option value="5" {if $priority eq 5}selected="selected"{/if}>{tr}5 -Very High-{/tr}</option> </select> |
