Bugfix
authorJoey Schulze <joey@infodrom.org>
Fri, 4 Apr 2014 18:54:38 +0000 (18:54 +0000)
committerJoey Schulze <joey@infodrom.org>
Fri, 4 Apr 2014 18:54:38 +0000 (18:54 +0000)
src/future.php

index 929da8e..8e35a80 100644 (file)
@@ -3,7 +3,7 @@ function __autoload($class)
 {
   if (!defined('CLASS_PATH')) throw new Exception('Class path not defined');
 
-  $fname = CLASS_PATH . '/' . .'/class/'.strtolower($class).'.class.php';
+  $fname = CLASS_PATH . '/'.strtolower($class).'.class.php';
 
   if (!file_exists($fname)) throw new Exception(sprintf('Class %s not found', $class));