From e24131b6d8ac03928d1bc8863f7c7073199e67dd Mon Sep 17 00:00:00 2001 From: eileen Date: Mon, 6 Jun 2016 13:48:42 -0600 Subject: [PATCH] CRM-17310 add reports to menu when rebuilding nav from civicrm/admin/menu?reset=1 CRM-17310 add reports to menu when rebuilding nav from civicrm/admin/menu?reset=1 --- CRM/Core/BAO/Navigation.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CRM/Core/BAO/Navigation.php b/CRM/Core/BAO/Navigation.php index 08c345ef25..db0e837ae7 100644 --- a/CRM/Core/BAO/Navigation.php +++ b/CRM/Core/BAO/Navigation.php @@ -929,6 +929,9 @@ ORDER BY parent_id, weight"; // Create or update the All Reports link. self::createOrUpdateReportNavItem('All Reports', 'civicrm/report/list', 'reset=1', $reports_nav->id, 'access CiviReport', $domain_id, TRUE); + // Create or update the My Reports link. + self::createOrUpdateReportNavItem('My Reports', 'civicrm/report/list', 'myreports=1&reset=1', $reports_nav->id, 'access CiviReport', $domain_id, TRUE); + } /** -- 2.25.1