Commit 7f887be2 authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

FIX : Retour d'un tableau vide par défaut pour la configuration éditable (suppression d'une Notice)

parent c6684053
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -187,6 +187,9 @@ class OscarConfigurationService implements ServiceLocatorAwareInterface
    public function getEditableConfKey($key, $default = null)
    {
        $conf = $this->getEditableConfRoot();
        if ($conf == null ){
            $conf = [];
        }
        if (array_key_exists($key, $conf)) {
            return $conf[$key];
        } else {