From 46d02bf9678d4b74f7c8de7c8bfca3ab274e36cb Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 8 Jun 2016 15:35:06 +0200 Subject: [PATCH] * API: async service failed to run on a default install (no phpgwapi) PHP Warning: include(): Failed opening '/var/www/epl-16.1/phpgwapi/inc/functions.inc.php' --- api/asyncservices.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/asyncservices.php b/api/asyncservices.php index 0f28de7d29..2bb82c9e48 100644 --- a/api/asyncservices.php +++ b/api/asyncservices.php @@ -70,7 +70,7 @@ if (!isset($GLOBALS['egw_domain'][$_REQUEST['domain']]) || empty($db_type)) die($msg); } -include(EGW_API_INC.'/functions.inc.php'); +include(EGW_SERVER_ROOT.'/api/src/loader.php'); $async = new Asyncservice(); $num = $async->check_run(isset($_REQUEST['run_by']) ? $_REQUEST['run_by'] : 'crontab');