From 0c34116c631c3291d14dc2eaf16017364d8be4ad Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Wed, 9 Oct 2013 12:23:26 +0100 Subject: [PATCH] CRM-13559 - Add component titles to report instance listing pages. ---------------------------------------- * CRM-13559: Component Report Listings Need a Specific Title http://issues.civicrm.org/jira/browse/CRM-13559 --- CRM/Report/Page/InstanceList.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Report/Page/InstanceList.php b/CRM/Report/Page/InstanceList.php index 50030a79c6..6b586cc22d 100644 --- a/CRM/Report/Page/InstanceList.php +++ b/CRM/Report/Page/InstanceList.php @@ -180,6 +180,8 @@ class CRM_Report_Page_InstanceList extends CRM_Core_Page { $this->assign('reportUrl', $reportUrl); if ($this->ovID) { $this->assign('title', $this->title); + } else { + CRM_Utils_System::setTitle(ts('%1 Reports', array(1 => $this->_compName))); } } // assign link to template list for users with appropriate permissions -- 2.25.1