From 487e47ffd7204a29a4ecae4aa157a216095dba9f Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Fri, 12 Feb 2016 16:02:20 -0500 Subject: [PATCH] CRM-17953 - Fix redirects from extern --- extern/url.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extern/url.php b/extern/url.php index bb06f1eb2b..0819f9cf17 100644 --- a/extern/url.php +++ b/extern/url.php @@ -54,4 +54,6 @@ if (strlen($query_string) > 0) { } } -CRM_Utils_System::redirect($url); +// CRM-17953 - The CMS is not bootstrapped so cannot use CRM_Utils_System::redirect +header('Location: ' . $url); +CRM_Utils_System::civiExit(); -- 2.25.1