Commit 980536e18353444d0b44686ab531cd0949b84a90
1 parent
076d0450
Exists in
master
and in
1 other branch
[Fix] corrigindo função nativa inválida.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
rn/MdWsSeiAnotacaoRN.php
... | ... | @@ -27,7 +27,7 @@ class MdWsSeiAnotacaoRN extends InfraRN { |
27 | 27 | |
28 | 28 | $anotacaoDTO->setDthAnotacao(InfraData::getStrDataHoraAtual()); |
29 | 29 | |
30 | - if (isset($post['prioridade']) && in_array($post['prioridade'], arrray('S', 'N'))) { | |
30 | + if (isset($post['prioridade']) && in_array($post['prioridade'], array('S', 'N'))) { | |
31 | 31 | $anotacaoDTO->setStrSinPrioridade($post['prioridade']); |
32 | 32 | }else{ |
33 | 33 | $anotacaoDTO->setStrSinPrioridade('N'); | ... | ... |