Browse Source

Use view path constants in view->find() method.

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

+ 2 - 2
system/view.php

@@ -103,11 +103,11 @@ class View {
 	 */
 	protected function find()
 	{
-		if (file_exists($path = APP_PATH.'views/'.$this->view.EXT))
+		if (file_exists($path = VIEW_PATH.$this->view.EXT))
 		{
 			return $path;
 		}
-		elseif (file_exists($path = SYS_PATH.'views/'.$this->view.EXT))
+		elseif (file_exists($path = SYS_VIEW_PATH.$this->view.EXT))
 		{
 			return $path;
 		}