Browse Source

Refactor the view class.

Taylor Otwell 13 years ago
parent
commit
3bf85e03a5
1 changed files with 4 additions and 1 deletions
  1. 4 1
      system/view.php

+ 4 - 1
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);