CRM-15603 - Standardize case of 'Deceased Date'
authorColeman Watts <coleman@civicrm.org>
Sun, 16 Nov 2014 01:56:58 +0000 (20:56 -0500)
committerColeman Watts <coleman@civicrm.org>
Sun, 16 Nov 2014 13:41:37 +0000 (08:41 -0500)
CRM/Contact/Form/Edit/Demographics.php

index a54bb4864eb971556cb832701f8c4d40dad28085..42651ec076aa784e96d0b68e7fcf90c5ce6c4c83 100644 (file)
@@ -62,7 +62,7 @@ class CRM_Contact_Form_Edit_Demographics {
     $form->addDate('birth_date', ts('Date of Birth'), FALSE, array('formatType' => 'birth'));
 
     $form->addElement('checkbox', 'is_deceased', NULL, ts('Contact is deceased'), array('onclick' => "showDeceasedDate()"));
-    $form->addDate('deceased_date', ts('Deceased date'), FALSE, array('formatType' => 'birth'));
+    $form->addDate('deceased_date', ts('Deceased Date'), FALSE, array('formatType' => 'birth'));
   }
 
   /**