Skip to content

Commit 899f7bd

Browse files
committed
Fix componser autoloader at _toolkit_loader.php
1 parent e0c5827 commit 899f7bd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

_toolkit_loader.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// http://php.net/manual/en/language.oop5.autoload.php
66

77
// Load composer vendor folder if any
8-
if (file_exists(__DIR__ . 'vendor/autoload.php')) {
8+
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
99
require __DIR__ . '/vendor/autoload.php';
1010
}
1111

@@ -31,3 +31,4 @@
3131
include_once $libDir.$element;
3232
}
3333
}
34+

0 commit comments

Comments
 (0)