bugfix artikelimport

This commit is contained in:
OpenXE 2024-10-02 17:10:22 +02:00
parent fe75b1b716
commit 390a2054ec

View File

@ -4008,7 +4008,8 @@ class Importvorlage extends GenImportvorlage {
$feldnameohnepsrache = str_replace($sprachenSet,'',$feldnameohnepsrache); $feldnameohnepsrache = str_replace($sprachenSet,'',$feldnameohnepsrache);
} }
if(in_array($feldnameohnepsrache, $erlaubtefelder,false) && !in_array($sprachenSet,$zuImportierendeSprachen[$sprache],false)){ $haystack = $zuImportierendeSprachen[$sprache]?$zuImportierendeSprachen[$sprache]:array();
if(in_array($feldnameohnepsrache, $erlaubtefelder,false) && !in_array($sprachenSet,$haystack,false)){
$zuImportierendeSprachen[$sprache][] = $sprachenSet; $zuImportierendeSprachen[$sprache][] = $sprachenSet;
} }
} }