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

우물가닷컴 2023.09.14 23:14:27

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));

 

그럼 성공!