Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 3.2.2
-
Fix Version/s: 3.2.4
-
Component/s: Drupal Integration Modules
-
Labels:None
Description
This was reported fixed for 3.2 and is the same issue as CRM-6067
Custom date fields from CiviCRM loaded through Views 2 don't show date format options in the Views interface.
Preliminary fix: change line 4968 of civicrm/drupal/modules/views/civicrm.views.inc from
'Select Date', 'Select State/Province', 'Select Country', 'Multi-Select Country',
to
'Select State/Province', 'Select Country', 'Multi-Select Country',
Reasoning: Date select ('Select Date') 'elements should not be handed off to the civicrm_handler_field_custom function, but should rather be allowed through the civicrm_get_field_handler function which will then determine their proper type (date) and the appropriate handler.