묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
특정사용자에게 금지 태그 허용
2011.05.31 14:22
하려고,
/config/func.inc.php 파일에서 아래처럼 고쳤습니다
오류는 없는데 효과가 없네요
여기에선 $logged_info->user_id =="abcd"
이런것 사용못하나요?
function removeHackTag($content) {
// 특정 태그들을 일반 문자로 변경
if($logged_info->user_id =="abcd"){ // 특정사용자에게 권한 허용
$content = preg_replace('/<(\/?)(script|meta|style|applet|link|base|html|body)/is', '<$1$2', $content);
}
else{
$content = preg_replace('/<(\/?)(iframe|script|meta|style|applet|link|base|html|body)/is', '<$1$2', $content);
}
/config/func.inc.php 파일에서 아래처럼 고쳤습니다
오류는 없는데 효과가 없네요
여기에선 $logged_info->user_id =="abcd"
이런것 사용못하나요?
function removeHackTag($content) {
// 특정 태그들을 일반 문자로 변경
if($logged_info->user_id =="abcd"){ // 특정사용자에게 권한 허용
$content = preg_replace('/<(\/?)(script|meta|style|applet|link|base|html|body)/is', '<$1$2', $content);
}
else{
$content = preg_replace('/<(\/?)(iframe|script|meta|style|applet|link|base|html|body)/is', '<$1$2', $content);
}
이게 빠졌었네요..^^