From 9c2e5a52c9762dacb97789226c2ee4065d1e18e9 Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Sat, 20 Sep 2008 16:10:29 +0000 Subject: [PATCH] #299672 by fago: Cache form only if #cache is set to TRUE. --- includes/form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/form.inc b/includes/form.inc index 06482c2302de..3c64b0dc4e52 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -934,7 +934,7 @@ function form_builder($form_id, $form, &$form_state) { // If some callback set #cache, we need to flip a static flag so later it // can be found. - if (isset($form['#cache'])) { + if (isset($form['#cache']) && $form['#cache']) { $cache = $form['#cache']; } // We are on the top form, we can copy back #cache if it's set. -- GitLab