Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
2173ef13
Commit
2173ef13
authored
Feb 27, 2006
by
Gerhard Killesreiter
Browse files
#50772
, Getting destination from $_REQUEST, patch by rmiotke
parent
72a73fed
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/common.inc
View file @
2173ef13
...
...
@@ -218,10 +218,10 @@ function drupal_get_destination() {
* @see drupal_get_destination()
*/
function
drupal_goto
(
$path
=
''
,
$query
=
NULL
,
$fragment
=
NULL
)
{
if
(
$_REQUEST
[
'destination'
])
{
if
(
isset
(
$_REQUEST
[
'destination'
])
)
{
extract
(
parse_url
(
$_REQUEST
[
'destination'
]));
}
else
if
(
$_REQUEST
[
'edit'
][
'destination'
])
{
else
if
(
isset
(
$_REQUEST
[
'edit'
][
'destination'
])
)
{
extract
(
parse_url
(
$_REQUEST
[
'edit'
][
'destination'
]));
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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