From b86470b2d4da1c1fde20aabf70b36f517bb0c27b Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Mon, 6 Jul 2020 10:08:15 +1000 Subject: [PATCH] Ensure that when normal routing trackable urls and opens in Joomla go to the frontend not administrator site --- CRM/Utils/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System.php b/CRM/Utils/System.php index 04eb8d3ad5..16ad53f921 100644 --- a/CRM/Utils/System.php +++ b/CRM/Utils/System.php @@ -333,7 +333,7 @@ class CRM_Utils_System { * @return \Psr\Http\Message\UriInterface */ $mkRouteUri = function ($path, $query) use ($e) { - $urlTxt = CRM_Utils_System::url($path, $query, $e->absolute, $e->fragment, FALSE); + $urlTxt = CRM_Utils_System::url($path, $query, $e->absolute, $e->fragment, FALSE, TRUE); if ($e->isSSL || ($e->isSSL === NULL && \CRM_Utils_System::isSSL())) { $urlTxt = str_replace('http://', 'https://', $urlTxt); } -- 2.25.1