diff options
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 57bff0233..452013589 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -660,7 +660,7 @@ function drupal_encode_path($path) { function drupal_goto($path = '', array $options = array(), $http_response_code = 302) { // A destination in $_GET always overrides the function arguments. if (isset($_GET['destination'])) { - $destination = drupal_parse_url(urldecode($_GET['destination'])); + $destination = drupal_parse_url($_GET['destination']); $path = $destination['path']; $options['query'] = $destination['query']; $options['fragment'] = $destination['fragment']; |