diff --git a/plugins/quickicon/eos310/eos310.php b/plugins/quickicon/eos310/eos310.php index ea2f4f1e91e7c..b602725408467 100644 --- a/plugins/quickicon/eos310/eos310.php +++ b/plugins/quickicon/eos310/eos310.php @@ -211,7 +211,7 @@ private function getMessageInfo($monthsUntilEOS, $inverted) } // The security support is ending in 6 months - if ($monthsUntilEOS <= 6) + if ($monthsUntilEOS < 6) { return array( 'id' => 4, @@ -226,7 +226,7 @@ private function getMessageInfo($monthsUntilEOS, $inverted) } // We are in security only mode now, 12 month to go from now on - if ($monthsUntilEOS <= 12) + if ($monthsUntilEOS < 12) { return array( 'id' => 3, @@ -241,7 +241,7 @@ private function getMessageInfo($monthsUntilEOS, $inverted) } // We still have 16 month to go, lets remind our users about the pre upgrade checker - if ($monthsUntilEOS <= 16) + if ($monthsUntilEOS < 16) { return array( 'id' => 2, @@ -256,7 +256,7 @@ private function getMessageInfo($monthsUntilEOS, $inverted) } // Lets start our messages 2 month after the initial release, still 22 month to go - if ($monthsUntilEOS <= 22) + if ($monthsUntilEOS < 22) { return array( 'id' => 1,