Commit d70fcc7b78110fdd8279b6f812f5ae0431f75a7e

Authored by Eriksen Costa
1 parent aca5ace1
Exists in master

Corrigido bug que tratava campo "Livro" como numérico em certidão civil no cadastro de aluno

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
ieducar/intranet/educar_aluno_cad.php
... ... @@ -1164,7 +1164,7 @@ class indice extends clsCadastro
1164 1164 NULL, FALSE);
1165 1165  
1166 1166 $this->campoTexto('num_termo', 'Termo', $this->num_termo, '8', '8', FALSE);
1167   - $this->campoNumero('num_livro', 'Livro', $this->num_livro, '8', '8', FALSE);
  1167 + $this->campoTexto('num_livro', 'Livro', $this->num_livro, '8', '8', FALSE);
1168 1168 $this->campoTexto('num_folha', 'Folha', $this->num_folha, '4', '4', FALSE);
1169 1169  
1170 1170 $this->campoData('data_emissao_cert_civil', 'Emissão Certidão Civil',
... ...