From: eileen Date: Mon, 6 Jun 2016 19:48:42 +0000 (-0600) Subject: CRM-17310 add reports to menu when rebuilding nav from civicrm/admin/menu?reset=1 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e24131b6d8ac03928d1bc8863f7c7073199e67dd;p=civicrm-core.git 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 --- 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); + } /**