Browse Source

Refactor the view class.

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

+ 4 - 1
system/view.php

@@ -115,7 +115,10 @@ class View {
 
 		$path = ($module == 'application') ? VIEW_PATH : MODULE_PATH.$module.'/views/';
 
-		if ($module != 'application') $view = substr($view, strpos($view, ':') + 2);
+		if ($module != 'application')
+		{
+			$view = substr($view, strpos($view, ':') + 2);
+		}
 
 		return array($module, $path, $view);
 	}