diff --git a/plugins/views_plugin_cache.inc b/plugins/views_plugin_cache.inc index e429321..0a6fa12 100644 --- a/plugins/views_plugin_cache.inc +++ b/plugins/views_plugin_cache.inc @@ -280,6 +280,7 @@ class views_plugin_cache extends views_plugin { 'super-user' => $user->uid == 1, // special caching for super user. 'language' => $GLOBALS['language']->language, 'base_url' => $GLOBALS['base_url'], + 'exposed_input' => isset($this->view->exposed_input) ? $this->view->exposed_input : NULL, ); foreach (array('exposed_info', 'page', 'sort', 'order', 'items_per_page', 'offset') as $key) { if (isset($_GET[$key])) { @@ -303,6 +304,7 @@ class views_plugin_cache extends views_plugin { 'theme' => $GLOBALS['theme'], 'language' => $GLOBALS['language']->language, 'base_url' => $GLOBALS['base_url'], + 'exposed_input' => isset($this->view->exposed_input) ? $this->view->exposed_input : NULL, ); $this->_output_key = $this->view->name . ':' . $this->display->id . ':output:' . md5(serialize($key_data));