From bec4604aac70497f5936d2a69706bb477086ba1a Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 5 Jun 2007 12:27:29 +0000 Subject: [PATCH] Updated implicit_flush detection, it should be turned off not on git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6551 594d385d-05f5-0310-b6e9-bd551577e9d8 --- setup/class_setupStep_Checks.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/class_setupStep_Checks.inc b/setup/class_setupStep_Checks.inc index 366ab1b2e..5af36b6c4 100644 --- a/setup/class_setupStep_Checks.inc +++ b/setup/class_setupStep_Checks.inc @@ -218,7 +218,7 @@ class Step_Checks extends setup_step $N = "implicit_flush = "._("Off").""; $D = _("This option influences the PHP output handling. Turn this Option off, to increase performance."); $S = _("Search for 'implicit_flush' in your php.ini and set it to 'Off'."); - $R = ini_get('implicit_flush'); + $R = !ini_get('implicit_flush'); $M = FALSE; $this->config_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M ); -- 2.30.2