Commit 2d0bc301 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

[Fix] Correction d'un plantage au niveau des méthodes addSource et addAction du DataManager

parent 432155ab
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
1.4.1 (23/05/2025)
------------------

- [Fix] Correction d'un plantage au niveau des méthodes addSource et addAction du DataManager


1.4.0 (16/04/2025)
------------------

+2 −2
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ class DataManager
    {
        $sources   = $this->getSources();
        $sources[] = $source;
        $this->setOptions(self::OPTION_SOURCES, $sources);
        $this->setOption(self::OPTION_SOURCES, $sources);

        return $this;
    }
@@ -170,7 +170,7 @@ class DataManager
    {
        $actions        = $this->getActions();
        $actions[$name] = $libelle;
        $this->setOptions(self::OPTION_ACTIONS, $actions);
        $this->setOption(self::OPTION_ACTIONS, $actions);

        return $this;
    }