From: Eileen McNaughton Date: Tue, 5 Jul 2022 20:46:05 +0000 (+1200) Subject: Enotice fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=87f77a0ba8aed9eb72a0faee5fb68ce44b5bc3a1;p=civicrm-core.git Enotice fix --- diff --git a/CRM/Admin/Page/Mapping.php b/CRM/Admin/Page/Mapping.php index 1e9d326e54..eb3e596e36 100644 --- a/CRM/Admin/Page/Mapping.php +++ b/CRM/Admin/Page/Mapping.php @@ -127,4 +127,13 @@ class CRM_Admin_Page_Mapping extends CRM_Core_Page_Basic { return parent::run(NULL, NULL, $sort); } + /** + * Get any properties that should always be present in each row (null if no value). + * + * @return array + */ + protected function getExpectedRowProperties(): array { + return ['description']; + } + }