Browse Source

Cleaning up the view class.

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

+ 1 - 4
system/view.php

@@ -196,10 +196,7 @@ 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);