From 1dc24ed822ab534949ea3efa1eabf0a5869c862e Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Fri, 9 Dec 2016 12:46:28 +1100 Subject: [PATCH] Fix Drupal 8 get User url --- CRM/Utils/System/DrupalBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System/DrupalBase.php b/CRM/Utils/System/DrupalBase.php index 3129073181..c86ef39c45 100644 --- a/CRM/Utils/System/DrupalBase.php +++ b/CRM/Utils/System/DrupalBase.php @@ -252,7 +252,7 @@ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base { 'cms:view user account', )) ) { - return url('user/' . $uid); + return $this->url('user/' . $uid); }; } -- 2.25.1