에디터에 넣은 이미지 팝업은 /bbs/view.php 파일의 약 124번 줄 근처
$view[content] = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 name='target_resize_image[]' onclick='image_window(this)' style='cursor:pointer;' \\2 \\3", $view[content]);
요 내용이 있습니다. 여기서 onclick='image_window(this)를 제거 하시면 팝업이 안뜹니다.
첨부파일의 경우는 /lib/common.lib.php 937번줄 근처
return "<img src='$g4[path]/data/file/$board[bo_table]/".urlencode($file)."' name='target_resize_image[]' onclick='image_window(this);' style='cursor:pointer;' title='$content'>";
여기의 onclick='image_window(this);'를 제거하시면 됩니다.
댓글 1개
$view[content] = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 name='target_resize_image[]' onclick='image_window(this)' style='cursor:pointer;' \\2 \\3", $view[content]);
요 내용이 있습니다. 여기서 onclick='image_window(this)를 제거 하시면 팝업이 안뜹니다.
첨부파일의 경우는 /lib/common.lib.php 937번줄 근처
return "<img src='$g4[path]/data/file/$board[bo_table]/".urlencode($file)."' name='target_resize_image[]' onclick='image_window(this);' style='cursor:pointer;' title='$content'>";
여기의 onclick='image_window(this);'를 제거하시면 됩니다.