Commit 078641ec6879ea81e28d63d2ddbbe0934e42dc9a
1 parent
8e44842d
Exists in
master
and in
7 other branches
Correção na ferramenta legenda para não provocar erros de acentuação ao aplicar uma nova classe
Showing
4 changed files
with
1 additions
and
1 deletions
Show diff stats
admin/admin.db
No preview for this file type
classesphp/classe_alteraclasse.php
... | ... | @@ -211,7 +211,7 @@ class Alteraclasse |
211 | 211 | |
212 | 212 | $nomes = $this->converteTexto($nomes); |
213 | 213 | $nomes = explode(";",$nomes); |
214 | - //$exps = mb_convert_encoding($exps,"ISO-8859-1","UTF-8"); | |
214 | + $exps = mb_convert_encoding($exps,"ISO-8859-1","UTF-8"); | |
215 | 215 | $exps = explode(";",$exps); |
216 | 216 | //pega os layers existentes no array ids e armazena no array t |
217 | 217 | $c = count($ids); | ... | ... |