diff --git a/plugins/views_plugin_cache.inc b/plugins/views_plugin_cache.inc index ceef865..53a0f7f 100644 --- a/plugins/views_plugin_cache.inc +++ b/plugins/views_plugin_cache.inc @@ -264,6 +264,7 @@ class views_plugin_cache extends views_plugin { 'roles' => array_keys($user->roles), 'super-user' => $user->uid == 1, // special caching for super user. 'language' => $GLOBALS['language'], + 'exposed_input' => (isset($this->view->exposed_input)) ? $this->view->exposed_input : null, ); foreach (array('exposed_info', 'page', 'sort', 'order') as $key) { if (isset($_GET[$key])) { @@ -286,6 +287,7 @@ class views_plugin_cache extends views_plugin { 'super-user' => $user->uid == 1, // special caching for super user. 'theme' => $GLOBALS['theme'], 'language' => $GLOBALS['language'], + '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));