From: sushantpaste Date: Mon, 19 Aug 2019 10:58:21 +0000 (+0530) Subject: dev/core#1077 Fixes making report listing actions links hookable X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=090e9e0e13b84fd40e06a4b0dfc49a779292733a;p=civicrm-core.git dev/core#1077 Fixes making report listing actions links hookable --- diff --git a/CRM/Report/Page/InstanceList.php b/CRM/Report/Page/InstanceList.php index 8e8b17cbdd..b7aa9fab33 100644 --- a/CRM/Report/Page/InstanceList.php +++ b/CRM/Report/Page/InstanceList.php @@ -282,6 +282,11 @@ class CRM_Report_Page_InstanceList extends CRM_Core_Page { 'confirm_message' => ts('Are you sure you want delete this report? This action cannot be undone.'), ]; } + CRM_Utils_Hook::links('view.report.links', + $className, + $instanceID, + $actions + ); return $actions; }