Enotice fixes
authorEileen McNaughton <emcnaughton@wikimedia.org>
Sun, 20 Mar 2022 21:04:08 +0000 (10:04 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Sun, 20 Mar 2022 21:04:08 +0000 (10:04 +1300)
civicrm/admin/uf/group/add?action=add&reset=1

CRM/Core/Form/EntityFormTrait.php
templates/CRM/Core/Form/Field.tpl

index d807c58527364718bc985c3e40ad2ad41648b8ea..ccf5522788446357b8b28da2f4759aef602f5180 100644 (file)
@@ -137,6 +137,16 @@ trait CRM_Core_Form_EntityFormTrait {
     }
     $this->applyFilter('__ALL__', 'trim');
     $this->addEntityFieldsToTemplate();
+    foreach ($this->entityFields as $index => $fields) {
+      $this->entityFields[$index] = array_merge([
+        'template' => '',
+        'help' => [],
+        'pre_html_text' => '',
+        'post_html_text' => '',
+        'description' => '',
+        'documentation_link' => '',
+      ], $fields);
+    }
     $this->assign('entityFields', $this->entityFields);
     $this->assign('entityID', $this->getEntityId());
     $this->assign('entityInClassFormat', strtolower(str_replace('_', '-', $this->getDefaultEntity())));
index d6d99d35e1f86eb62b6a87f123d64761ea3ff562..b2d5ba396bf597d56ba784eb2f7a59a3f8edd0af 100644 (file)
   {include file=$fieldSpec.template}
 {else}
   <td class="label">{$form.$fieldName.label}
-    {if !empty($fieldSpec.help)}{assign var=help value=$fieldSpec.help}{capture assign=helpFile}{if $fieldSpec.help}
-      {$fieldSpec.help}
-    {else}''{/if}
-    {/capture}{help id=$help.id file=$help.file}{/if}
+    {if !empty($fieldSpec.help|smarty:nodefaults)}{assign var=help value=$fieldSpec.help}{help id=$help.id file=$help.file}{/if}
     {if $action == 2 && !empty($fieldSpec.is_add_translate_dialog)}{include file='CRM/Core/I18n/Dialog.tpl' table=$entityTable field=$fieldName id=$entityID}{/if}
   </td>
   <td>{if !empty($fieldSpec.pre_html_text)}{$fieldSpec.pre_html_text}{/if}{if $form.$fieldName.html}{$form.$fieldName.html}{else}{$fieldSpec.place_holder}{/if}{if !empty($fieldSpec.post_html_text)}{$fieldSpec.post_html_text}{/if}<br />