Commit 4ee602d9d4a7988892e0c1d6f3671bce954f7902
1 parent
d74a3213
Exists in
master
and in
1 other branch
[Fix] Corrigindo problema de charset.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
rn/MdWsSeiAnotacaoRN.php
... | ... | @@ -42,7 +42,7 @@ class MdWsSeiAnotacaoRN extends InfraRN { |
42 | 42 | try{ |
43 | 43 | $anotacaoRN = new AnotacaoRN(); |
44 | 44 | if(!$anotacaoDTO->getDblIdProtocolo()){ |
45 | - throw new InfraException('Protocolo n�o informado.'); | |
45 | + throw new InfraException('Protocolo não informado.'); | |
46 | 46 | } |
47 | 47 | $anotacaoConsulta = new AnotacaoDTO(); |
48 | 48 | $anotacaoConsulta->setDblIdProtocolo($anotacaoDTO->getDblIdProtocolo()); |
... | ... | @@ -55,7 +55,7 @@ class MdWsSeiAnotacaoRN extends InfraRN { |
55 | 55 | }else{ |
56 | 56 | $anotacaoRN->cadastrar($anotacaoDTO); |
57 | 57 | } |
58 | - return MdWsSeiRest::formataRetornoSucessoREST('Anotação cadastrada com sucesso!'); | |
58 | + return MdWsSeiRest::formataRetornoSucessoREST('Anotação cadastrada com sucesso!'); | |
59 | 59 | }catch (Exception $e){ |
60 | 60 | return MdWsSeiRest::formataRetornoErroREST($e); |
61 | 61 | } | ... | ... |