From: Jon goldberg Date: Thu, 9 Apr 2015 23:48:44 +0000 (-0400) Subject: CRM-16196 - CiviCRM Core - CRM_Utils_System_Drupal::getLoginURL should always generat... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4dddcf7fc2efeb30bf26ba4cb37702f5e8dd0560;p=civicrm-core.git CRM-16196 - CiviCRM Core - CRM_Utils_System_Drupal::getLoginURL should always generate absolute paths --- diff --git a/CRM/Utils/System/Drupal.php b/CRM/Utils/System/Drupal.php index 3c461204fc..105bab57df 100644 --- a/CRM/Utils/System/Drupal.php +++ b/CRM/Utils/System/Drupal.php @@ -167,7 +167,7 @@ class CRM_Utils_System_Drupal extends CRM_Utils_System_DrupalBase { */ public function getLoginURL($destination = '') { $query = $destination ? array('destination' => $destination) : array(); - return url('user', array('query' => $query)); + return url('user', array('query' => $query), TRUE); } /**