Commit 0148240fbe10b68144ade7de3baae257fa9f3217
1 parent
b8607352
Exists in
master
and in
7 other branches
Correção na gravação do nome de um menu quando utiliza-se acentuação (sistema de administração)
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
admin/admin.db
No preview for this file type
admin/php/menutemas.php
... | ... | @@ -749,8 +749,8 @@ function alteraMenus() |
749 | 749 | include("conexao.php"); |
750 | 750 | if($convUTF) |
751 | 751 | { |
752 | - $nome = utf8_encode($nome); | |
753 | - $desc = utf8_encode($desc); | |
752 | + $nome_menu = utf8_encode($nome_menu); | |
753 | + $desc_menu = utf8_encode($desc_menu); | |
754 | 754 | } |
755 | 755 | if($id_menu != "") |
756 | 756 | { | ... | ... |