menu fixing utf8 and ring groups pt-ring option

This commit is contained in:
Nuno Miguel Reis
2014-01-16 23:30:56 +00:00
parent 09f6d2825b
commit 4cb72d88cc
4 changed files with 15 additions and 2 deletions

View File

@@ -267,7 +267,7 @@
//echo $sql."<br />\n";
}
else {
$db->exec(check_sql($sql));
$db->exec(utf8_encode(check_sql($sql)));
}
unset($sql);
@@ -290,7 +290,7 @@
$sql .= "'".$menu_language."', ";
$sql .= "'".check_str($menu_item_title)."' ";
$sql .= ")";
$db->exec(check_sql($sql));
$db->exec(utf8_encode(check_sql($sql)));
unset($sql);
}
}