Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
b305521a
Commit
b305521a
authored
Jun 12, 2012
by
catch
Browse files
Issue
#1569580
by naxoc: Unnecessary call to urldecode().
parent
cbaa67d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/modules/system/system.module
View file @
b305521a
...
...
@@ -2921,7 +2921,7 @@ function confirm_form($form, $question, $path, $description = NULL, $yes = NULL,
// Prepare cancel link.
if
(
isset
(
$_GET
[
'destination'
]))
{
$options
=
drupal_parse_url
(
urldecode
(
$_GET
[
'destination'
])
)
;
$options
=
drupal_parse_url
(
$_GET
[
'destination'
]);
}
elseif
(
is_array
(
$path
))
{
$options
=
$path
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment