From: Eileen McNaughton Date: Wed, 13 Sep 2023 02:51:14 +0000 (+1200) Subject: Fix notice on Membership Component Settings page X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e3f43b1ab5af0d3cf1063ee45805b3c6b66b6c4c;p=civicrm-core.git Fix notice on Membership Component Settings page --- diff --git a/templates/CRM/Core/Form/Field.tpl b/templates/CRM/Core/Form/Field.tpl index e9237ff450..97a111ecb9 100644 --- a/templates/CRM/Core/Form/Field.tpl +++ b/templates/CRM/Core/Form/Field.tpl @@ -7,16 +7,16 @@ | and copyright information, see https://civicrm.org/licensing | +--------------------------------------------------------------------+ *} -{if $fieldSpec.template} +{if array_key_exists('template', $fieldSpec)} {include file=$fieldSpec.template} {else} {$form.$fieldName.label} - {if $fieldSpec.help.id}{help id=$fieldSpec.help.id file=$fieldSpec.help.file}{/if} + {if array_key_exists('help', $fieldSpec) && $fieldSpec.help.id}{help id=$fieldSpec.help.id file=$fieldSpec.help.file}{/if} {if $action == 2 && array_key_exists('is_add_translate_dialog', $fieldSpec)}{include file='CRM/Core/I18n/Dialog.tpl' table=$entityTable field=$fieldName id=$entityID}{/if} - {if $fieldSpec.pre_html_text}{$fieldSpec.pre_html_text}{/if}{if $form.$fieldName.html}{$form.$fieldName.html}{else}{$fieldSpec.place_holder}{/if}{if $fieldSpec.post_html_text}{$fieldSpec.post_html_text}{/if}
- {if $fieldSpec.description}{$fieldSpec.description}{/if} - {if $fieldSpec.documentation_link.page}{docURL page=$fieldSpec.documentation_link.page resource=$fieldSpec.documentation_link.resource}{/if} + {if array_key_exists('pre_html_text', $fieldSpec)}{$fieldSpec.pre_html_text}{/if}{if $form.$fieldName.html}{$form.$fieldName.html}{else}{$fieldSpec.place_holder}{/if}{if array_key_exists('post_html_text', $fieldSpec)}{$fieldSpec.post_html_text}{/if}
+ {if array_key_exists('descrition', $fieldSpec)}{$fieldSpec.description}{/if} + {if array_key_exists('documentation_link.page', $fieldSpec)}{docURL page=$fieldSpec.documentation_link.page resource=$fieldSpec.documentation_link.resource}{/if} {/if}