Browse Source

added check for .php in route finder glob.

Taylor Otwell 13 years ago
parent
commit
29b98b2acb
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);
 			}