From 539994e29c1c44124fe6c7c0cd99f7c4ef1fa95a Mon Sep 17 00:00:00 2001 From: Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> Date: Mon, 27 Feb 2006 14:46:49 +0000 Subject: [PATCH] #43826, no way to suppress form_id, patch by wtanaka --- includes/form.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/includes/form.inc b/includes/form.inc index c33ea6a3694e..83936eed0532 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -49,7 +49,9 @@ function element_children($element) { * and then submit the form using drupal_submit_form(). * * @param $form_id - * A unique string identifying the form. Allows each form to be themed. + * A unique string identifying the form. Allows each form to be + * themed. Pass NULL to suppress the form_id parameter (produces + * a shorter URL with method=get) * @param $form * An associative array containing the structure of the form. * @param $callback @@ -70,7 +72,9 @@ function drupal_get_form($form_id, &$form, $callback = NULL) { $form['form_token'] = array('#type' => 'hidden', '#default_value' => md5(session_id() . $form['#token'] . variable_get('drupal_private_key', ''))); } - $form['form_id'] = array('#type' => 'hidden', '#value' => $form_id); + if (isset($form_id)) { + $form['form_id'] = array('#type' => 'hidden', '#value' => $form_id); + } if (!isset($form['#id'])) { $form['#id'] = $form_id; } -- GitLab