From e6ccdba871d2de9aa3d44e696d5180ab8e8f6a77 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 11 Apr 2018 15:05:53 +0200 Subject: [PATCH] run fastcgi_finish_request also for non-compat install --- api/src/Egw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Egw.php b/api/src/Egw.php index f3601f43cf..8461b324bb 100644 --- a/api/src/Egw.php +++ b/api/src/Egw.php @@ -591,7 +591,7 @@ class Egw extends Egw\Base } flush();*/ // working for fastCGI :-) - if (function_exists('fastcgi_finish_request') && substr($_SERVER['PHP_SELF'], -32) != '/phpgwapi/cron/asyncservices.php') + if (function_exists('fastcgi_finish_request') && substr($_SERVER['PHP_SELF'], -18) != '/asyncservices.php') { fastcgi_finish_request(); }