From 42f32100b188075bf17d10786cc318501188fbb4 Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Tue, 12 Jan 2016 18:03:47 +0530 Subject: [PATCH] CRM-17809 -- Fatal Error on Date Format Page --- CRM/Admin/Form/Setting.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Admin/Form/Setting.php b/CRM/Admin/Form/Setting.php index e1b743caad..7503ab7c51 100644 --- a/CRM/Admin/Form/Setting.php +++ b/CRM/Admin/Form/Setting.php @@ -131,6 +131,9 @@ class CRM_Admin_Form_Setting extends CRM_Core_Form { 'label' => ts($props['title']), )); } + elseif ($add == 'addMonthDay') { + $this->add('date', $setting, ts($props['title']), CRM_Core_SelectValues::date(NULL, 'M d')); + } else { $this->$add($setting, ts($props['title'])); } -- 2.25.1