projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
335f74f
)
CRM-16196 - CiviCRM Core - CRM_Utils_System_Drupal::getLoginURL should always generat...
author
Jon goldberg
<jon@palantetech.coop>
Thu, 9 Apr 2015 23:48:44 +0000
(19:48 -0400)
committer
Jon goldberg
<jon@palantetech.coop>
Fri, 10 Apr 2015 02:22:49 +0000
(22:22 -0400)
CRM/Utils/System/Drupal.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Utils/System/Drupal.php
b/CRM/Utils/System/Drupal.php
index 3c461204fce84b351a251bf8c20b02cb77496115..105bab57df2488e3d751303d3f51cec22e66e1b4 100644
(file)
--- 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
);
}
/**