Revision
90
Author
emsmith
Date
2007-01-05 06:37:06 -0800 (Fri, 05 Jan 2007)

Log Message

Oops, forgot strtolower in autoload

Modified Paths

Diff

Modified: trunk/lib/cc.class.php (89 => 90)


--- trunk/lib/cc.class.php	2007-01-05 14:34:13 UTC (rev 89)
+++ trunk/lib/cc.class.php	2007-01-05 14:37:06 UTC (rev 90)
@@ -215,7 +215,7 @@
 			$array[] = '';
 		}
 
-		$program = self::$dir . 'programs' . DS . self::$program . DS . 'lib' . DS . implode(DS, $array) . $file;
+		$program = self::$dir . 'programs' . DS . strtolower(self::$program) . DS . 'lib' . DS . implode(DS, $array) . $file;
 		$lib = self::$dir . 'lib' . DS . implode(DS, $array) . $file;
 
 		if (file_exists($program))