From 9afae995b841e27e8ce928cc3f2eba4ae5118bce Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Tue, 3 Dec 2013 12:28:20 -0800 Subject: [PATCH] CRM-13900 - Fix back to report URL. ---------------------------------------- * CRM-13900: Back to Report listing in Mailing Event reports has the wrong URL http://issues.civicrm.org/jira/browse/CRM-13900 --- CRM/Mailing/Page/Event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Mailing/Page/Event.php b/CRM/Mailing/Page/Event.php index 30f89fc08e..1d380b43de 100644 --- a/CRM/Mailing/Page/Event.php +++ b/CRM/Mailing/Page/Event.php @@ -79,7 +79,7 @@ class CRM_Mailing_Page_Event extends CRM_Core_Page { $backUrlTitle = ts('Back to Mailing'); } else { - $backUrl = CRM_Utils_System::url('civicrm/mailing', 'reset=1'); + $backUrl = CRM_Utils_System::url('civicrm/mailing/report', "reset=1&mid={$mailing_id}"); $backUrlTitle = ts('Back to Report'); } -- 2.25.1