Browse Source

Fixed typo in View alias (missing backslash).

michaelowens 13 years ago
parent
commit
c77e8c5a36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/config/application.php

+ 1 - 1
application/config/application.php

@@ -118,7 +118,7 @@ return array(
 		'Session' => 'System\\Session',
 		'Str' => 'System\\Str',
 		'Text' => 'System\\Text',
-		'View' => 'System\View',
+		'View' => 'System\\View',
 	),
 
 );