묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
첨부파일 아이콘 없애는 방법 좀 알려주세요.
2009.05.28 10:05
사진파일등을 첨부할때 제목에 생기는 아이콘들을 없앨려고 합니다.
xe 1.1 버젼까지는
document_item.php 파일을 수정해서 가능했는데
xe 1.2 버젼이후에는 위의 파일을 똑같이 수정해서 올릴경우
에러가 뜹니다.
현재 게시판에 나와있는 팁들도 전부 xe 1.1 기준으로 되어있어서 난감하네요.
혹시 이 문제에 대해 아시는분들 도움좀 주세요..^^
댓글 2
-
궁금이2
2009.05.28 10:39
-
궁금이
2009.05.28 11:23
가르쳐주신대로 했는데 제가 했던것과 똑같은
아래의 에러가 계속뜹니다.
"Warning: Cannot modify header information"
Handler.class.php 에 문제가 있다네요..
xe1.2.3 에서 이전의 소스로 바뀐 듯 하네요.
적용결과 이전의 팁으로 이상없이 작동합니다.
// 새글 체크
if($this->get('regdate')>$time_check) $buffs[] = "new";
else if($this->get('last_update')>$time_check) $buffs[] = "update";
// 사진 이미지 체크
preg_match_all('!<img([^>]*?)>!is', $content, $matches);
$cnt = count($matches[0]);
for($i=0;$i<$cnt;$i++) {
if(preg_match('/editor_component=/',$matches[0][$i])&&!preg_match('/image_(gallery|link)/i',$matches[0][$i])) continue;
$buffs[] = "image";
$check_files = true;
break;
}
// 동영상 체크
if(preg_match('!<embed([^>]*?)>!is', $content) || preg_match('/editor_component=("|\')*multimedia_link/i', $content) ) {
$buffs[] = "movie";
$check_files = true;
}
// 첨부파일 체크
if($this->hasUploadedFiles()) $buffs[] = "file";
위 소스를 삭제해 보세요.