mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Clever... classloader was based upon LENGTH of Productname. Wave is 1 char shorter than Cloud
This commit is contained in:
@@ -7,10 +7,10 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
* Extremely simple autoloader helper, has lots of shortcomings
|
||||
*/
|
||||
spl_autoload_register(function ($class) {
|
||||
if (mb_substr($class, 0, 9) !== 'Wavelog\\') {
|
||||
if (mb_substr($class, 0, 8) !== 'Wavelog\\') {
|
||||
return false;
|
||||
}
|
||||
$class=substr($class,9);
|
||||
$class=substr($class,8);
|
||||
$file = str_replace('\\', DIRECTORY_SEPARATOR, $class).'.php';
|
||||
$file = __DIR__ . "/../../src/" . $file;
|
||||
if (file_exists($file)) {
|
||||
|
||||
Reference in New Issue
Block a user