Skip to content

Commit

Permalink
ajuste removendo caracteres inaceitáveis das informações adicionais
Browse files Browse the repository at this point in the history
  • Loading branch information
robmachado committed Mar 25, 2024
1 parent 7b69d40 commit d5108d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Make.php
Original file line number Diff line number Diff line change
Expand Up @@ -7255,14 +7255,14 @@ public function taginfAdic(stdClass $std): DOMElement
$this->dom->addChild(
$this->infAdic,
"infAdFisco",
$std->infAdFisco,
Strings::replaceUnacceptableCharacters($std->infAdFisco ?? null),
false,
"Informações Adicionais de Interesse do Fisco"
);
$this->dom->addChild(
$this->infAdic,
"infCpl",
$std->infCpl,
Strings::replaceUnacceptableCharacters($std->infCpl ?? null),
false,
"Informações Complementares de interesse do Contribuinte"
);
Expand Down

0 comments on commit d5108d0

Please sign in to comment.