From 6d7c84226aa3be7be2afb0904910dfbb46a54399 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Tue, 29 Nov 2022 17:18:27 +0100 Subject: [PATCH] Bugfix undefined $oConfig --- snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php b/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php index a0894a2ff..f79c7aaae 100644 --- a/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php +++ b/snappymail/v/0.0.0/app/libraries/RainLoop/ServiceActions.php @@ -551,7 +551,7 @@ class ServiceActions $sTheme = $this->oActions->ValidateTheme($this->aPaths[4]); $bAppDebug = $this->Config()->Get('debug', 'enable', false); - $sMinify = ($bAppDebug || $oConfig->Get('labs', 'use_app_debug_css', false)) ? '' : 'min'; + $sMinify = ($bAppDebug || $this->Config()->Get('labs', 'use_app_debug_css', false)) ? '' : 'min'; $bCacheEnabled = !$bAppDebug && $this->Config()->Get('labs', 'cache_system_data', true); if ($bCacheEnabled) {