added missing view property to PageCache

fixes #544
This commit is contained in:
Carsten Brandt
2013-06-16 10:28:34 +02:00
parent d34301a308
commit 0b294c6fd1

View File

@@ -66,6 +66,11 @@ class PageCache extends ActionFilter
* the fragment cache according to specific setting (e.g. enable fragment cache only for GET requests).
*/
public $enabled = true;
/**
* @var View the view component to use for caching. If not set, the default application view component
* [[Application::view]] will be used.
*/
public $view;
public function init()