Browse Source

Merge branch 'develop'

Taylor Otwell 13 years ago
parent
commit
3c8da4df93
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/route/finder.php

+ 1 - 1
system/route/finder.php

@@ -77,7 +77,7 @@ class Finder {
 
 		foreach ($recursiveIterator as $file)
 		{
-			if (filetype($file) === 'file')
+			if (filetype($file) === 'file' and strpos($file, EXT) !== false)
 			{
 				$routes = array_merge(require $file, $routes);
 			}