From: Eileen McNaughton Date: Wed, 22 Dec 2021 01:23:18 +0000 (+1300) Subject: Do not apply default escaping to multiselects on currency form X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=97f75abd39a765dca0264f0db3a8d0e2c45deae9;p=civicrm-core.git 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 --- 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}