Commit 15e988b9 authored by bcosca's avatar bcosca
Browse files

Bug fix: Autoload path not converted to lowercase

parent ede6ae86
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1387,7 +1387,7 @@ final class Base {
		foreach ($this->split($this->hive['PLUGINS'].';'.
			$this->hive['AUTOLOAD']) as $auto)
			if (is_file($file=$auto.$class.'.php') ||
				is_file($file=$auto.strtolower($class).'.php'))
				is_file($file=strtolower($auto.$class).'.php'))
				return require($file);
	}