묻고답하기

어떤님이 알려주셨는데 이상하게 소스가 안맞네요


<!-- 목록 출력 -->
<form action="./" method="get">
    <table cellspacing="0" summary="" class="boardList">
    <thead>
    <tr>
        <!--// 관리자일 경우 게시글 선택 checkbox 표시 -->
        <!--@if($grant->manager)-->
            <th scope="col" class="no_line"><input type="checkbox" onclick="XE.checkboxToggleAll({ doClick:true }); return false;" /></th>
        <!--@end-->
    <!--// 목록 설정으로 table theader 생성 -->
    {@ $_line_idx = 0;}
    <!--@foreach($list_config as $key => $val)-->
        <!--// 디자인 요소를 위한 내부 변수 설정(첫번째 th의 no_line 클래스 부여) -->
        <!--@if(!$grant->manager && $_line_idx==0)-->
            {@$_lc = 'class="no_line"';$_l = "no_line"}
        <!--@else-->
            {@$_lc = $_l = ""}
        <!--@end-->
        <!--// 기본 컨텐츠일 경우 -->
        <!--@if($val->idx == -1)-->
            <!--// 컨텐츠 종류에 따라서 출력 -->
            <!--@if($val->type == 'no')-->
                <th scope="col" {$_lc}><div>{$lang->no}</div></th>
            <!--@elseif($val->type == 'title')-->
                <th scope="col" class="<!--@if($module_info->use_category == 'Y')-->category<!--@else-->title<!--@end--> {$_l}">
                    <div>
                    <!--@if($module_info->use_category == "Y")-->
                    <!--// 카테고리 사용시 카테고리 선택 표시 -->
                            <select name="category" id="board_category">
                                <option value="">{$lang->category}</option>
                                <!--@foreach($category_list as $val)-->
                                <option value="{$val->category_srl}" <!--@if($category==$val->category_srl)-->selected="selected"<!--@end-->>{str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
                                <!--@end-->
                            </select>
                            <input type="button" name="go_button" id="go_button" value="GO" onclick="doChangeCategory(); return false;" class="buttonTypeGo" />
                    <!--@else-->
                    {$lang->title}
                    <!--@end-->
                    </div>
                </th>
            <!--@elseif($val->type == 'regdate')-->
                <th scope="col" class="date {$_l}"><div><a href="{getUrl('sort_index','regdate','order_type',$order_type)}">{$lang->date}<!--@if($sort_index=='regdate')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th>
            <!--@elseif($val->type == 'last_update')-->
                <th scope="col" class="date {$_l}"><div><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_update}<!--@if($sort_index=='last_update')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th>
            <!--@elseif($val->type == 'nick_name'+ ')-->
                <th class="author" scope="col" {$_lc}><div>{$lang->writer}</div></th>
            <!--@elseif($val->type == 'user_id')-->
                <th class="author" scope="col" {$_lc}><div>{$lang->user_id}</div></th>
            <!--@elseif($val->type == 'user_name')-->
                <th class="author" scope="col" {$_lc}><div>{$lang->user_name}</div></th>
            <!--@elseif($val->type == 'readed_count')-->
                <th class="reading" scope="col" {$_lc}><div><a href="{getUrl('sort_index','readed_count','order_type',$order_type)}">{$lang->readed_count}<!--@if($sort_index=='readed_count')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th>
            <!--@elseif($val->type == 'voted_count')-->
                <th class="recommend" scope="col" {$_lc}><div><a href="{getUrl('sort_index','voted_count','order_type',$order_type)}">{$lang->voted_count}<!--@if($sort_index=='voted_count')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th>
            <!--@end-->
        <!--// 사용자 선언 확장변수일 경우 -->
        <!--@else-->
                <th scope="col" {$_lc}><div>{$val->name}</div></th>
        <!--@end-->
        {@ $_line_idx++;}
    <!--@end-->
    </tr>
    </thead>
    <tbody>
    <!--// 게시물이 없으면 등록된 글이 없음을 표시 -->
    <!--@if(!$document_list && !$notice_list)-->
    <tr class="bg0 tCenter">
        <td colspan="<!--@if($grant->manager)-->{count($list_config)+1}<!--@else-->{count($list_config)}<!--@end-->" class="title">
            {$lang->no_documents}
        </td>
    </tr>
    <!--@else-->
        <!--// 공지사항 출력 -->
        <!--@foreach($notice_list as $no => $document)-->
        <tr class="notice">
            <!--// 관리자일 경우 게시글 선택 checkbox 표시 -->
            <!--@if($grant->manager)-->
                <td class="checkbox"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td>
            <!--@end-->
            <!--// 목록 설정으로 table theader 생성 -->
            <!--@foreach($list_config as $key => $val)-->
                <!--// 기본 컨텐츠일 경우 -->
                <!--@if($val->idx == -1)-->
                    <!--// 컨텐츠 종류에 따라서 출력 -->
                    <!--@if($val->type == 'no')-->
                        <td class="notice"><!--@if($document_srl == $document->document_srl)--><img src="./images/common/iconArrowD8.gif" border="0" alt="" /><!--@else-->{$lang->notice}<!--@end--></td>
                    <!--@elseif($val->type == 'title')-->
                        <td class="title">
                            <!--@if($module_info->use_category == "Y" && $document->get('category_srl'))-->
                            <strong class="category" <!--@if($category_list[$document->get('category_srl')]->color)-->style="color:{$category_list[$document->get('category_srl')]->color};"<!--@end-->>{$category_list[$document->get('category_srl')]->title}</strong>
                            <!--@end-->
                            <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
                            
                            <!--@if($document->getCommentCount())-->
                                <span class="replyAndTrackback" title="Replies"><img src="./images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
                            <!--@end-->
                            <!--@if($document->getTrackbackCount())-->
                                <span class="replyAndTrackback" title="Trackbacks"><img src="./images/{$module_info->colorset}/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
                            <!--@end-->
                            {$document->printExtraImages(60*60*$module_info->duration_new)}
                        </td>
                    <!--@elseif($val->type == 'regdate')-->
                        <td class="date">{$document->getRegdate('Y-m-d')}</td>
                    <!--@elseif($val->type == 'last_update')-->
                        <td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td>
                    <!--@elseif($val->type == '+ 'nick_name')-->
                        <td class="author"><div class="member_{$document->get('member_srl')}">{$document->getNickName()}</div></td>
                    <!--@elseif($val->type == 'user_id')-->
                        <td class="author">{$document->getUserID()}</td>
                    <!--@elseif($val->type == 'user_name')-->
                        <td class="author">{$document->getUserName()}</td>
                    <!--@elseif($val->type == 'readed_count')-->
                        <td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td>
                    <!--@elseif($val->type == 'voted_count')-->
                        <td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td>
                    <!--@end-->
                <!--// 사용자 선언 확장변수일 경우 -->
                <!--@else-->
                        <td>{$document->getExtraValueHTML($val->idx)}&nbsp;</td>
                <!--@end-->
            <!--@end-->
        </tr>
        <!--@end-->
        <!--// 일반 글 출력 -->
        <!--@foreach($document_list as $no => $document)-->
        <tr class="bg{($no+1)%2+1}">
        
            <!--// 관리자일 경우 게시글 선택 checkbox 표시 -->
            <!--@if($grant->manager)-->
                <td class="checkbox"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td>
            <!--@end-->
            <!--// 목록 설정으로 table theader 생성 -->
            <!--@foreach($list_config as $key => $val)-->
                <!--// 기본 컨텐츠일 경우 -->
                <!--@if($val->idx == -1)-->
                    <!--// 컨텐츠 종류에 따라서 출력 -->
                    <!--@if($val->type == 'no')-->
                        <td class="num"><!--@if($document_srl == $document->document_srl)--><img src="./images/common/iconArrowD8.gif" border="0" alt="" /><!--@else-->{$no}<!--@end--></td>
                    <!--@elseif($val->type == 'title')-->
                        <td class="title">
                            <!--@if($module_info->use_category == "Y" && $document->get('category_srl'+ '))-->
                            <strong class="category" <!--@if($category_list[$document->get('category_srl')]->color)-->style="color:{$category_list[$document->get('category_srl')]->color};"<!--@end-->>{$category_list[$document->get('category_srl')]->title}</strong>
                            <!--@end-->
                            <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
                            
                            <!--@if($document->getCommentCount())-->
                                <span class="replyAndTrackback" title="Replies"><img src="./images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
                            <!--@end-->
                            <!--@if($document->getTrackbackCount())-->
                                <span class="replyAndTrackback" title="Trackbacks"><img src="./images/{$module_info->colorset}/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
                            <!--@end-->
                            {$document->printExtraImages(60*60*$module_info->duration_new)}
                        </td>
                    <!--@elseif($val->type == 'regdate')-->
                        <td class="date">{$document->getRegdate('Y-m-d')}</td>
                    <!--@elseif($val->type == 'last_update')-->
                        <td class="date">{zdate($document->get('+ 'last_update'),'Y-m-d H:i')}</td>
                    <!--@elseif($val->type == 'nick_name')-->
                        <td class="author"><div class="member_{$document->get('member_srl')}">{$document->getNickName()}</div></td>
                    <!--@elseif($val->type == 'user_id')-->
                        <td class="author">{$document->getUserID()}</td>
                    <!--@elseif($val->type == 'user_name')-->
                        <td class="author">{$document->getUserName()}</td>
                    <!--@elseif($val->type == 'readed_count')-->
                        <td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td>
                    <!--@elseif($val->type == 'voted_count')-->
                        <td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td>
                    <!--@end-->
                <!--// 사용자 선언 확장변수일 경우 -->
                <!--@else-->
                        <td>{$document->getExtraValueHTML($val->idx)}&nbsp;</td>
                <!--@end-->
            <!--@end-->
        <!--@end-->
        </tr>
    <!--@end-->
    </tbody>
    </table>
</form>







board 1.3 / xe_official 게시판 스킨 / 목록보기를 사용할 때 기준(다른데서 수정하고 안된다고 하기 없기)

xe - modules - board - skins - xe_official - _style.list.html 열고
line 136 쯤에
<!--@ foreach($document_list as $no => $document)-->
이것 바로 밑에
<!--@ if($document->get('voted_count')>5)-->
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('update xe_documents set module_srl = 61 where document_srl = '.$document->document_srl);
continue;
}
<!--@ end-->
이걸 삽입.... 붉은 숫자 61은 이동할 게시판 모듈번호로 수정










이렇게 하라고 하셨는데 도대체어디있는지 ㅠㅠ
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
여름장마oim 회원가입 폼에 질문 추가하기 [3] file 2014.10.26 by 여름장마oim
lifeto 로그인 스킨수정 문의 [5] 2014.10.26 by 퍼니엑스이
illum 제목만 rss로 보낼 수 없을까요? [2] 2014.10.26 by illum
lifeto XE 메뉴 만들기 질문. [2] 2014.10.26 by lifeto
winpark21 확장변수를 사용한 게시판 리스트에서 항목별 폭 조절 [2] file 2014.10.26 by 어드밴스드
신혜영영여영 제로보드ver4 게시판의 글마다 페이스북 likebutton 이나 likebox달고 싶어요 가능할까요? [2] 2014.10.26 by 퍼니엑스이
최윤한 ping 테스트하면 정상적으로 핑이 전달되는데 ssh 접속이 굉장히 느립니다. [2] 2014.10.26 by 퍼니엑스이
lifeto 로그인유지 버튼 문구 변경 하는 곳 [2] 2014.10.25 by lifeto
lifeto 이미지를 버튼으로 사용하는 방법 문의 [2] 2014.10.25 by lifeto
jisue97 난다날아님 회원가입 확장 모듈이 제대로 작동하질 않습니다. [4] 2014.10.25 by KrteamENT
lifeto 로그인 위젯 제작방법 문의 [4] 2014.10.25 by KrteamENT
바람맨1222 MessageXE Ⅱ 모듈 API 관련문의 [3] 2014.10.25 by KrteamENT
젠장할 스케치북5 게시판 넓이(폭)조절 문제 [5] file 2014.10.25 by SeungXE
lifeto 제이커리 코드가 안먹히는 이유 아시는분? [5] 2014.10.25 by lifeto
처리낭군 소셜 서버 api Google(구글) 되는데 있나요? [5] 2014.10.25 by 처리낭군
젠장할 스케치북5 레이아웃 미사용 게시판넓이(폭) 줄이기 file  
ZIK9MAN 제로보드에서 메뉴 나올때 한번에 다 나오게 하고 싶습니다. [2] 2014.10.25 by lifeto
이온디 컨텐츠 위젯에서 바로 추천 링크를 걸 수가 있을까요? [4] 2014.10.25 by 이온디
손주사랑 상단메뉴와 좌측메뉴가 잘 사라집니다 해결책은 없을까요? [6] file 2014.10.25 by 손주사랑
죽방망이 윈도우서버2012 xe 회원가입 메일보내기 설정좀.ㅠㅠ [1] 2014.10.25 by 죽방망이
이온디 위젯 스킨 제작 중입니다. 그런데 제이쿼리가 적용이 잘 안되네요. [7] 2014.10.25 by Happyphp
xe질문용 회원정보에서 아이디 비공개(볼수없게하기) [1] 2014.10.25 by SeungXE
ery75921 홈페이지 트위터 바꾸기 [1] 2014.10.25 by SeungXE
게고코고 알림센터 모듈을 사용하면 댓글 작성 후 새로고침이 안됩니다. [1] 2014.10.25 by SeungXE
ttt22 Data URI 업로드 에디터 오류가 납니다.  
처리낭군 updatenews 위젯 스킨이 이상하게 나오네요.. [3] file 2014.10.24 by 처리낭군
xe초보자 새글 아이콘이 미쳤네요  
Migguragi xe폴더를 떼어낸후  
처리낭군 ' Uncaught TypeError: Cannot read property 'addEventListener' of null' 에러가 뭔가요? [1] 2014.10.24 by 처리낭군
토미카 글쓰고 등록 버튼시 내용 값 필수입니다 라고 뜹니다 [9] 2014.10.24 by 토미카