From 826cfbeceb488fa8d7bb0d0c80d09e2d94f6d872 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 12 Nov 2014 13:48:26 +0100 Subject: [PATCH] Fix include path to the Cli in icingacli --- bin/icingacli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/icingacli b/bin/icingacli index 5bd5086d21..3f3cc47f17 100755 --- a/bin/icingacli +++ b/bin/icingacli @@ -8,7 +8,7 @@ define('ICINGAWEB_BASEDIR', dirname(__DIR__)); // ICINGAWEB_BASEDIR is the parent folder for at least application, bin, modules, library/vendor and public -if (! @include_once ICINGAWEB_BASEDIR . 'Icinga/Application/Cli.php') { +if (! @include_once ICINGAWEB_BASEDIR . '/library/Icinga/Application/Cli.php') { // If the Icinga library wasn't found under ICINGAWEB_BASEDIR, require that the Icinga library is found in PHP's // include path which is the case if Icinga Web 2 is installed via packages require_once 'Icinga/Application/Cli.php';