From 88d14981f22e14b46b5755e21eb74bea20a7ca00 Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@3064.no-reply.drupal.org> Date: Sat, 23 Sep 2006 07:50:16 +0000 Subject: [PATCH] #84111 by AjK. Be sure to get the right multistep form. --- includes/form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/form.inc b/includes/form.inc index 71e244204a1a..bf7486f54ea2 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -70,7 +70,7 @@ function drupal_get_form($form_id) { // then go on to the one that was requested if everything works. $form_build_id = md5(mt_rand()); - if (isset($_POST['form_build_id']) && isset($_SESSION['form'][$_POST['form_build_id']])) { + if (isset($_POST['form_build_id']) && isset($_SESSION['form'][$_POST['form_build_id']]) && $_POST['form_id'] == $form_id) { // There's a previously stored multi-step form. We should handle // IT first. $stored = TRUE; -- GitLab