N°5108 - Rename variable

This commit is contained in:
Molkobain
2022-08-04 10:08:40 +02:00
parent 79021fba1f
commit 78a29ab3ca

View File

@@ -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();
}
/**