Skip to content

Commit

Permalink
42225: Gesetzte Haken und ausgefülltes Textfeld werden bei Export / I…
Browse files Browse the repository at this point in the history
…mport nicht übernommen - Fehlermeldung
  • Loading branch information
alex40724 committed Nov 10, 2024
1 parent 6760c1b commit 5635b7c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,9 @@ protected function trimAndStripAttribs(array $attribs): array
{
$ret = [];
foreach ($attribs as $k => $v) {
$ret[$k] = $this->trimAndStrip((string) $v);
$ret[$k] = ((string) $v !== "<>")
? $this->trimAndStrip((string) $v)
: "<>";
}
return $ret;
}
Expand Down

0 comments on commit 5635b7c

Please sign in to comment.