Browse Source

Move view composer loading back to application directory.

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

+ 1 - 1
system/view.php

@@ -61,7 +61,7 @@ class View {
 	{
 		if (is_null(static::$composers))
 		{
-			static::$composers = require VIEW_PATH.'composers'.EXT;
+			static::$composers = require APP_PATH.'composers'.EXT;
 		}
 
 		$instance = new static($view, $data);