-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Description
this code
require_once 'jrs-rest-php-client/autoload.dist.php';
$client = new \Jaspersoft\Client\Client();
creates the situation where the value of $location variable in spl_autoload_register is
/home/user/jrs-rest-php-client/src/Jaspersoft\Client\Client.php
the path is incorrect due to backslashes
it is now
$location = JASPERCLIENT_ROOT . $class . '.php';
it should be
$location = JASPERCLIENT_ROOT . str_replace('\\', '/', $class) . '.php';
Mailosz and OrPh4ns
Metadata
Metadata
Assignees
Labels
No labels