From 78a29ab3ca9391fc3f6dfdd7548e36d33d47f760 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 4 Aug 2022 10:08:40 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B05108=20-=20Rename=20variable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/utils.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/utils.inc.php b/application/utils.inc.php index fa018fefa..ca5f27fec 100644 --- a/application/utils.inc.php +++ b/application/utils.inc.php @@ -1956,10 +1956,10 @@ class utils $iCurrentMaxExecTime = (int) ini_get('max_execution_time'); set_time_limit(0); // Compiling SASS - $sCss = $oSass->compileString($sSassContent); + $oCompilationRes = $oSass->compileString($sSassContent); set_time_limit(intval($iCurrentMaxExecTime)); - return $sCss->getCss(); + return $oCompilationRes->getCss(); } /**