civicrm / org.civicrm.civicase

CiviCase Extension
Other
9 stars 35 forks source link

CiviCase dashboard includes deleted case count #114

Closed pradpnayak closed 6 years ago

pradpnayak commented 6 years ago

https://github.com/civicrm/org.civicrm.civicase/issues/113

colemanw commented 6 years ago

For security, let's cast the param to an integer before injecting it into a query. E.g.

$isDeleted = (int) CRM_Utils_Array::value('is_deleted', $params);
pradpnayak commented 6 years ago

@colemanw I have just pushed the changes, can you please review?

pradpnayak commented 6 years ago

Thanks @colemanw