Commit e8427514 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Bug getion du '0'

parent a258d7df
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -133,8 +133,8 @@ class Cell
    public function getFormuleExpr(): ?array
    {
        $fText = $this->getFormule();
        if (!$fText) $fText = $this->getValue();
        if (!$fText) return null;
        if ($fText === null) $fText = $this->getValue();
        if ($fText === null) return null;

        $formule = new Formule($fText);