Skip to content
Snippets Groups Projects
Commit 331aefe5 authored by Sebastien ANDRE's avatar Sebastien ANDRE
Browse files

hotline : #182793 : error division by 0

parent 56272589
Branches
Tags
1 merge request!4787[rtok] hotline : #182793 : error division by 0
Pipeline #24460 passed with stage
in 28 minutes and 22 seconds
- correctif #182793 : Cosmogramme : Intégration en erreur
\ No newline at end of file
......@@ -265,7 +265,7 @@ class Class_FileManager_FileSystem {
$used = (int)$parts[0];
$free = ($total >= $used) ? ($total - $used) : 0;
$used_percent = sprintf('%.2f',($used / $total) * 100) . '%';
$used_percent = sprintf('%.2f', $total ? (($used / $total) * 100) : 0) . '%';
$disk_datas = ['free' => $free,
'total' => $total,
......@@ -431,4 +431,4 @@ class Class_FileManager_FileSystem {
public function disableCache() {
static::$_cache_status = false;
}
}
\ No newline at end of file
}
......@@ -26,10 +26,12 @@ class ZendAfi_View_Helper_Status_JsonTest extends ZendAfi_View_Helper_Status_Tes
$_report,
$_helper_class = 'ZendAfi_View_Helper_Status_Json';
public function setUp() {
parent::setUp();
/* hotline : https://forge.afi-sa.net/issues/182793 */
Class_AdminVar::set('ALLOWED_DISK_SPACE', 0);
$this->_report = json_decode($this->_helper->status_Json(), true);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment