Browse Source

[Web] Fix class for full mailbox

andryyy 6 years ago
parent
commit
e94c9e1ca6
1 changed files with 3 additions and 3 deletions
  1. 3 3
      data/web/inc/functions.mailbox.inc.php

+ 3 - 3
data/web/inc/functions.mailbox.inc.php

@@ -3023,12 +3023,12 @@ function mailbox($_action, $_type, $_data = null, $_extra = null) {
           if ($mailboxdata['percent_in_use'] === '- ') {
             $mailboxdata['percent_class'] = "info";
           }
-          elseif ($mailboxdata['percent_in_use'] >= 75) {
-            $mailboxdata['percent_class'] = "warning";
-          }
           elseif ($mailboxdata['percent_in_use'] >= 90) {
             $mailboxdata['percent_class'] = "danger";
           }
+          elseif ($mailboxdata['percent_in_use'] >= 75) {
+            $mailboxdata['percent_class'] = "warning";
+          }
           else {
             $mailboxdata['percent_class'] = "success";
           }