From 8f76d5aa432482168d8c10091fd0916e95c15605 Mon Sep 17 00:00:00 2001 From: Herb Date: Wed, 7 Aug 2019 13:40:49 -0400 Subject: [PATCH] Issue 1170: Fix URL in CRM_Utils_System_Backdrop::getLoginURL --- CRM/Utils/System/Backdrop.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System/Backdrop.php b/CRM/Utils/System/Backdrop.php index eb34b8a2b7..5482e80089 100644 --- a/CRM/Utils/System/Backdrop.php +++ b/CRM/Utils/System/Backdrop.php @@ -152,7 +152,7 @@ class CRM_Utils_System_Backdrop extends CRM_Utils_System_DrupalBase { */ public function getLoginURL($destination = '') { $query = $destination ? ['destination' => $destination] : []; - return url('user', ['query' => $query, 'absolute' => TRUE]); + return url('user/login', ['query' => $query, 'absolute' => TRUE]); } /** -- 2.25.1