dev/core#289 - Fix caseId url param
authorColeman Watts <coleman@civicrm.org>
Wed, 1 Aug 2018 02:37:16 +0000 (22:37 -0400)
committerColeman Watts <coleman@civicrm.org>
Wed, 1 Aug 2018 02:37:16 +0000 (22:37 -0400)
CRM/Case/BAO/Case.php

index 4eeebfed00844c1f94b7ffbcfa64bb813286055e..9be3c8a140e6b0772dae8d06d623037c3b77ebe4 100644 (file)
@@ -684,7 +684,7 @@ LEFT JOIN civicrm_option_group aog ON aog.name='activity_type'
 
       $casesList[$key]['activity_list'] = sprintf('<a title="%s" class="crm-expand-row" href="%s"></a>',
         ts('Activities'),
-        CRM_Utils_System::url('civicrm/case/details', array('caseid' => $case['case_id'], 'cid' => $case['contact_id'], 'type' => $type))
+        CRM_Utils_System::url('civicrm/case/details', array('caseId' => $case['case_id'], 'cid' => $case['contact_id'], 'type' => $type))
       );
 
       $phone = empty($case['phone']) ? '' : '<br /><span class="description">' . $case['phone'] . '</span>';