summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-07-07 00:56:45 +0000
committerDries Buytaert <dries@buytaert.net>2010-07-07 00:56:45 +0000
commitc0fcf85b3901f2dde808791b5c59d0c545d8cbdc (patch)
treeb60c1ec774cb49070254dba459ef14e6e79dbe04 /includes
parent99c7b5de09ea5d1153feed4afd9f582ae55f9e37 (diff)
downloadbrdo-c0fcf85b3901f2dde808791b5c59d0c545d8cbdc.tar.gz
brdo-c0fcf85b3901f2dde808791b5c59d0c545d8cbdc.tar.bz2
- Patch #791168 by Berdir: does form_state() cache never get cleaned?
Diffstat (limited to 'includes')
-rw-r--r--includes/form.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/form.inc b/includes/form.inc
index e33a19d8d..b6732481e 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -747,7 +747,7 @@ function drupal_process_form($form_id, &$form, &$form_state) {
// here, though.
if (!variable_get('cache', 0) && !empty($form_state['values']['form_build_id'])) {
cache_clear_all('form_' . $form_state['values']['form_build_id'], 'cache_form');
- cache_clear_all('storage_' . $form_state['values']['form_build_id'], 'cache_form');
+ cache_clear_all('form_state_' . $form_state['values']['form_build_id'], 'cache_form');
}
// If batches were set in the submit handlers, we process them now,