Commit 9f8c9cc1 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Pb arrondi avec les ### de float PHP

parent aa4a71c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ class PlafondsViewHelper extends AbstractHtmlElement

        if (!$text) {
            $text = floatToString($plafond->getHeures()) . 'h, '
                . floatToString($max - $plafond->getHeures()) . ' dispo.';
                . floatToString(round($max - $plafond->getHeures(),2)) . ' dispo.';
        }

        $html = '';