영카트5 메뉴중 내용관리 FAQ관리 메뉴를 그누보드5로 옮김

This commit is contained in:
thisgun
2014-02-11 11:13:13 +09:00
parent 2ec3b1d0f2
commit c9cd0307c6
16 changed files with 1109 additions and 0 deletions

View File

@ -2535,4 +2535,12 @@ function check_input_vars()
}
}
}
// HTML 특수문자 변환 htmlspecialchars
function htmlspecialchars2($str)
{
$trans = array("\"" => "&#034;", "'" => "&#039;", "<"=>"&#060;", ">"=>"&#062;");
$str = strtr($str, $trans);
return $str;
}
?>