Skip to content
Snippets Groups Projects
Commit 68432ae6 authored by Gerhard Killesreiter's avatar Gerhard Killesreiter
Browse files

#49375, 'drupal_goto' / 'drupal_get_destination' broken with query params, patch by eberts

parent 8ea7cb3f
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -170,14 +170,18 @@ function drupal_get_destination() {
return 'destination='. urlencode($_REQUEST['destination']);
}
else {
$destination[] = $_GET['q'];
$params = array('page', 'sort', 'order');
foreach ($params as $param) {
if (isset($_GET[$param])) {
$destination[] = "$param=". $_GET[$param];
$path = $_GET['q'];
$params = array();
foreach ($_GET as $key => $value) {
if ($key == 'q') {
continue;
}
$params[] = urlencode($key) .'='. urlencode($value);
}
return 'destination='. urlencode(implode('&', $destination));
if (count($params)) {
$path .= '?';
}
return 'destination='. urlencode($path . implode('&', $params));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment