diff --git a/system/view.php b/system/view.php index c71ab356..8006f130 100644 --- a/system/view.php +++ b/system/view.php @@ -198,7 +198,10 @@ class View { // evaluate any sub-views or responses that are present. foreach ($this->data as &$data) { - if ($data instanceof View or $data instanceof Response) $data = (string) $data; + if ($data instanceof View or $data instanceof Response) + { + $data = (string) $data; + } } ob_start() and extract($this->data, EXTR_SKIP);