diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-14 20:42:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-14 20:42:47 +0000 |
commit | 3cb2a5eff420a00a3579df5ed7950f8d5c761bce (patch) | |
tree | d902867a1551637e730fe8c054382e9bffe84c1e /modules/system/system.module | |
parent | 361359527594f0d1fae88d9f02cab7e07b030956 (diff) | |
download | brdo-3cb2a5eff420a00a3579df5ed7950f8d5c761bce.tar.gz brdo-3cb2a5eff420a00a3579df5ed7950f8d5c761bce.tar.bz2 |
- Patch #582456 by dereine, sun, tobiasb: make confirm_form() respect query string destination.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index b6c25134b..a4c1ff883 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2400,14 +2400,17 @@ function _system_sort_requirements($a, $b) { function confirm_form($form, $question, $path, $description = NULL, $yes = NULL, $no = NULL, $name = 'confirm') { $description = isset($description) ? $description : t('This action cannot be undone.'); - // Prepare cancel link - $query = $fragment = NULL; - if (is_array($path)) { - $query = isset($path['query']) ? $path['query'] : NULL; - $fragment = isset($path['fragment']) ? $path['fragment'] : NULL; - $path = isset($path['path']) ? $path['path'] : NULL; - } - $cancel = l($no ? $no : t('Cancel'), $path, array('query' => $query, 'fragment' => $fragment)); + // Prepare cancel link. + if (isset($_GET['destination'])) { + $options = drupal_parse_url(urldecode($_GET['destination'])); + } + elseif (is_array($path)) { + $options = $path; + } + else { + $options = array('path' => $path); + } + $cancel = l($no ? $no : t('Cancel'), $options['path'], $options); drupal_set_title($question, PASS_THROUGH); |