로그인

검색

컨텐츠 위젯 따옴표 (") 가 " 처럼 코드로 노출될때

contentextended 위젯의 경우,

contentextended.class.php 파일의 1233 부근 아래 코드를

 

            if(count($attrs)) $title = sprintf("<span style=\"%s\">%s</span>", implode(';', $attrs), htmlspecialchars($title));

 

아래와 같이 바꿔준다.

 

            if(count($attrs)) $title = sprintf("<span style=\"%s\">%s</span>", implode(';', $attrs), htmlspecialchars_decode($title));

 

그럼 성공!

댓글 0개