From befde442155014dc4efb4c2d8f7758d44421afc4 Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 19 Aug 2021 10:41:20 +0200 Subject: [PATCH] :bug: fix non-existing variable --- setup/setuputils.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setuputils.class.inc.php b/setup/setuputils.class.inc.php index 3efd1cef8..45c7b8858 100644 --- a/setup/setuputils.class.inc.php +++ b/setup/setuputils.class.inc.php @@ -318,7 +318,7 @@ class SetupUtils if (!utils::IsMemoryLimitOk($iCurrentMemoryLimit, $iMinMemoryLimit)) { $aResult[] = new CheckResult(CheckResult::ERROR, "memory_limit ($sMemoryLimit) is too small, the minimum value to run the application is ".self::MIN_MEMORY_LIMIT."."); } else { - $aResult[] = new CheckResult(CheckResult::TRACE, "Info - memory_limit is $iMemoryLimit, ok."); + $aResult[] = new CheckResult(CheckResult::TRACE, "Info - memory_limit is $sMemoryLimit, ok."); } }