From 97f75abd39a765dca0264f0db3a8d0e2c45deae9 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 22 Dec 2021 14:23:18 +1300 Subject: [PATCH] Do not apply default escaping to multiselects on currency form This is probably an html pattern we have missed in our early returns but explictly marking the fields not to be escaped is probably better now the bulk is weeded out --- templates/CRM/Admin/Form/Setting/Localization.tpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/CRM/Admin/Form/Setting/Localization.tpl b/templates/CRM/Admin/Form/Setting/Localization.tpl index ea82fd5f11..754212bc0e 100644 --- a/templates/CRM/Admin/Form/Setting/Localization.tpl +++ b/templates/CRM/Admin/Form/Setting/Localization.tpl @@ -63,7 +63,7 @@ {$form.currencyLimit.label} - {$form.currencyLimit.html} + {$form.currencyLimit.html|smarty:nodefaults} {$form.moneyformat.label} {help id='moneyformat' title=$form.moneyformat.label} @@ -87,7 +87,7 @@ {include file='CRM/Admin/Form/Setting/SettingField.tpl' setting_name='defaultContactCountry' fieldSpec=$settings_fields.defaultContactCountry} {$form.pinnedContactCountries.label} {help id='pinnedContactCountries' title=$form.pinnedContactCountries.label} - {$form.pinnedContactCountries.html} + {$form.pinnedContactCountries.html|smarty:nodefaults} {$form.defaultContactStateProvince.label} {help id='defaultContactCountry' title=$form.defaultContactStateProvince.label} @@ -95,11 +95,11 @@ {$form.countryLimit.label} {help id='countryLimit' title=$form.countryLimit.label} - {$form.countryLimit.html} + {$form.countryLimit.html|smarty:nodefaults} {$form.provinceLimit.label} {help id='provinceLimit' title=$form.provinceLimit.label} - {$form.provinceLimit.html} + {$form.provinceLimit.html|smarty:nodefaults}

{ts}Multiple Languages Support{/ts}

-- 2.25.1