From 6deca4bd9b23df35dffe5043fbda47d17486eff2 Mon Sep 17 00:00:00 2001 From: Dasc3er Date: Mon, 15 Mar 2021 10:08:11 +0100 Subject: [PATCH] Correzione messaggio su spazio occupato --- modules/stato_servizi/src/SpaceHook.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/stato_servizi/src/SpaceHook.php b/modules/stato_servizi/src/SpaceHook.php index b4c75455b..5eec736b3 100644 --- a/modules/stato_servizi/src/SpaceHook.php +++ b/modules/stato_servizi/src/SpaceHook.php @@ -43,13 +43,14 @@ class SpaceHook extends CachedManager $osm_size = $this->getCache()->content; $soft_quota = (float) setting('Soft quota'); // Impostazione in GB - $space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato - $space_limit = $space_limit * (1024 ** 3); // Trasformazione in GB + $soft_quota = $soft_quota * (1024 ** 3); // Trasformazione in GB $message = tr('Attenzione: occupati _TOT_ dei _QUOTA_ previsti', [ '_TOT_' => FileSystem::formatBytes($osm_size), - '_QUOTA_' => FileSystem::formatBytes($space_limit), + '_QUOTA_' => FileSystem::formatBytes($soft_quota), ]); + + $space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato return [ 'icon' => 'fa fa-database text-warning',