Verified Commit c63f7de0 authored by bmortier's avatar bmortier
Browse files

:handshake: fix(errorhandlers) errorhandler.php is called statically in...

:handshake:

 fix(errorhandlers) errorhandler.php is called statically in config/bootstrap.php so file path should be change due to reorganising files

Signed-off-by: bmortier's avatarBenoit Mortier <benoit.mortier@fusiondirectory.org>
parent 5c0760de
1 merge request!87Resolve "errorhandler.php is called statically in config/bootstrap.php so file path should be change due to reorganising files"
Pipeline #32593 passed with stages
in 16 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -10,7 +10,7 @@ function autoload ($class)
// Integrator is required
require_once '/usr/share/php/FusionDirectory/autoloader.php';
// avoid error handler requirements error, as it should be one of the first to load ?
require_once dirname(__DIR__).'/library/ErrorHandler.php';
require_once dirname(__DIR__).'/handlers/ErrorHandler.php';
if (strpos($class, 'PHPMailer') !== FALSE) {
require_once("/usr/share/php/libphp-phpmailer/src/Exception.php");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment