From 42cff59a7d28e1066d94ee297ea779d7fcb9a2a0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 7 Jul 2011 07:22:50 -0700 Subject: [PATCH] Remove comment bloat from View class. --- system/view.php | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/system/view.php b/system/view.php index 990b2dcd..7ecb7054 100644 --- a/system/view.php +++ b/system/view.php @@ -57,9 +57,7 @@ public function get() { static::$last = $this->view; - // ----------------------------------------------------- // Get the evaluated content of all of the sub-views. - // ----------------------------------------------------- foreach ($this->data as &$data) { if ($data instanceof View or $data instanceof Response) @@ -68,27 +66,18 @@ public function get() } } - // ----------------------------------------------------- // Extract the view data into the local scope. - // ----------------------------------------------------- extract($this->data, EXTR_SKIP); - // ----------------------------------------------------- - // Start the output buffer so nothing escapes to the - // browser. The response will be sent later. - // ----------------------------------------------------- ob_start(); $path = $this->find(); - // ----------------------------------------------------- - // We include the view into the local scope within a - // try / catch block to catch any exceptions that may - // occur while the view is rendering. + // We include the view into the local scope within a try / catch to catch any + // exceptions that may occur while the view is rendering. // - // Otherwise, a white screen of death will be shown - // if an exception occurs while rendering the view. - // ----------------------------------------------------- + // Otherwise, a white screen of death will be shown if an exception occurs + // while rendering the view. try { include $path;