Skip to content
Snippets Groups Projects
Unverified Commit 9c428a56 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix syntax error

parent a6570fce
No related branches found
No related tags found
No related merge requests found
......@@ -9,11 +9,11 @@
*/
// SSP is loaded as a separate project
$libpath = \SimpleSAML\Utils\System::resolvePath(dirname(dirname(__FILE__)).'/vendor/autoload.php'));
$libpath = \SimpleSAML\Utils\System::resolvePath(dirname(dirname(__FILE__)).'/vendor/autoload.php');
if (file_exists($libpath) {
require_once $libpath;
} else { // SSP is loaded as a library
$libpath = \SimpleSAML\Utils\System::resolvePath(dirname(dirname(__FILE__)).'/../../autoload.php'));
$libpath = \SimpleSAML\Utils\System::resolvePath(dirname(dirname(__FILE__)).'/../../autoload.php');
if (file_exists($libpath) {
require_once $libpath;
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment