Browse Source

refactoring the view class.

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

+ 4 - 1
system/view.php

@@ -195,7 +195,10 @@ class View {
 
 		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;
+			}
 		}
 
 		extract($this->data, EXTR_SKIP);