summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-03-28 01:45:41 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-03-28 01:45:41 +0000
commitcad28df22b5077056e80709d6ec544bb82000e8b (patch)
treeeec44bc9023af3f5e9966cdb00f4391fc6568eaf /includes
parentfc7f5affd1c26266f5cb36498ddbb58f339032b2 (diff)
downloadbrdo-cad28df22b5077056e80709d6ec544bb82000e8b.tar.gz
brdo-cad28df22b5077056e80709d6ec544bb82000e8b.tar.bz2
#56089, $form['#redirect'] shouldn't be clobbered by the _submit return value., second try, patch by chx
Diffstat (limited to 'includes')
-rw-r--r--includes/form.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/form.inc b/includes/form.inc
index 3e030ae1b..18ae0b145 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -126,6 +126,9 @@ function drupal_get_form($form_id, &$form, $callback = NULL) {
if (is_array($goto)) {
call_user_func_array('drupal_goto', $redirect);
}
+ elseif (!isset($goto)) {
+ drupal_goto($_GET['q']);
+ }
else {
drupal_goto($goto);
}