From 103332a30f8976fcc224c8f55dc23aba7b99e578 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 4 Sep 2011 20:40:45 -0400 Subject: New router and view selector engine magic coolness. --- src/lib/Router.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/Router.class.php') diff --git a/src/lib/Router.class.php b/src/lib/Router.class.php index 459034d..238e3f8 100644 --- a/src/lib/Router.class.php +++ b/src/lib/Router.class.php @@ -27,8 +27,8 @@ class Router { $dirs = explode(PATH_SEPARATOR, $controllerpath); foreach ($dirs as $dir) { // Find all files in $dir with the ext `.class.php' - $controllerfiles = glob($dir.'/*.class.php'); - foreach ($controllerfiles as $file) { + $files = glob($dir.'/*.class.php'); + foreach ($files as $file) { // and include them require_once($file); } -- cgit v1.2.3-2-g168b