Commit cab69dc2c99ce8e41a8df91b8f0c9938515bd47f
1 parent
c43001b2
Exists in
master
and in
1 other branch
[FIX] Removendo marcador de link
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
rn/MdWsSeiProcessoRN.php
... | ... | @@ -38,8 +38,7 @@ class MdWsSeiProcessoRN extends InfraRN { |
38 | 38 | $valor = $atributoAndamentoDTO->getStrValor(); |
39 | 39 | |
40 | 40 | if (strripos($valor, '¥')) { |
41 | - $valor = explode('¥', $atributoAndamentoDTO->getStrValor()); | |
42 | - $valor = $valor[0]; | |
41 | + $valor = str_replace('¥', ' - ', $atributoAndamentoDTO->getStrValor()); | |
43 | 42 | } |
44 | 43 | |
45 | 44 | $strTemplate = str_replace('@' . $atributoAndamentoDTO->getStrNome() . '@', $valor, $strTemplate); | ... | ... |