Commit 642d14ef authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Petit bug corrigé : on attendait une string et null est venu...

parent 3c368420
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -337,7 +337,7 @@ class Publisher
            } else {
                if (isset($variables[$name])) {
                    foreach ($variables[$name] as $vElement) {
                        $this->setVariable($vElement, $val);
                        $this->setVariable($vElement, $val ? $val : '');
                    }
                }
                if (false !== strpos($name, '@')) {