From c54173bc4025667bda8c55e9a9f9aa17617867ed Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 18 Jul 2011 11:32:27 -0700 Subject: [PATCH] Remove View::$last. --- system/view.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/system/view.php b/system/view.php index 46159018..6a5b5012 100644 --- a/system/view.php +++ b/system/view.php @@ -16,13 +16,6 @@ class View { */ public $data = array(); - /** - * The name of last rendered view. - * - * @var string - */ - public static $last; - /** * Create a new view instance. * @@ -55,8 +48,6 @@ class View { */ public function get() { - static::$last = $this->view; - // Get the evaluated content of all of the sub-views. foreach ($this->data as &$data) {