Skip to content

Commit

Permalink
Merge pull request #9521 from seamuslee001/drupal8-url-fix
Browse files Browse the repository at this point in the history
CRM-19856 Fix Drupal 8 get User url
  • Loading branch information
eileenmcnaughton authored Feb 28, 2017
2 parents 81898ba + 1dc24ed commit 7c9eed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/System/DrupalBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public function getUserRecordUrl($contactID) {
'cms:view user account',
))
) {
return url('user/' . $uid);
return $this->url('user/' . $uid);
};
}

Expand Down

0 comments on commit 7c9eed3

Please sign in to comment.