Commit 5363a916 authored by bcosca's avatar bcosca
Browse files

Revert to previous autoload behavior

parent cb201442
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=strtolower($auto.$class).'.php'))
				is_file($file=$auto.strtolower($class).'.php'))
				return require($file);
	}