날싸 수정소스를 활용할 수 있도록 도와주세요~
본문
이전하면서 날짜도 게시물이 등록되었던 날짜로 옮기고 싶어서 날짜수정소스를 에스아이알에서 브레스님이 올려놓으신 소스를 넣어봤는데요...
http://www.sir.co.kr/bbs/tb.php/g4_qa/12893
위의 주소에 있는것처럼 스킨폴더의 write.skin.php파일에 해당 소스를 넣었거든요... 제가 소스를 볼줄 모르기 때문에 원인을 찾기가 힘이 많이 듭니다.
도움 부탁드립니다.
댓글목록 6
제로님의 댓글의 댓글
제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일
그곳은 안됩니다~!^^&
</form>
안에 넣어 주세요~~
<? if ($is_notice || $is_html || $is_secret || $is_mail) { ?>
<tr>
<td width=120 style='padding-left:20px; height:30px;'>· 옵션</td>
<td><? if ($is_notice) { ?><input type=checkbox name=notice value="1" <?=$notice_checked?>>공지 <? } ?>
<? if ($is_html) { ?><input onclick="html_auto_br(this);" type=checkbox value="<?=$html_value?>" name="html" <?=$html_checked?>><span class=w_title>html</span> <? } ?>
<? if ($is_secret) { ?><input type=checkbox value="secret" name="secret" <?=$secret_checked?>><span class=w_title>비밀글</span> <? } ?>
<? if ($is_mail) { ?><input type=checkbox value="mail" name="mail" <?=$recv_email_checked?>>답변메일받기 <? } ?></td></tr>
<tr><td colspan=2 height=1 bgcolor=#e7e7e7></td></tr>
<? } ?>
<? if($w == 'u' && $is_admin) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 작성날짜</td>
<td><input type=text name='wr_datetime' required itemname='시간' value='<?=$write[wr_datetime]?>' size='30'></td></tr>
<tr><td colspan=2 height=1 bgcolor=#F3F3F3></td></tr>
<? } ?>
옵션아래가 보기 좋게 들어 가더군요^^&
제로님의 댓글
제로쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일write.skin.php
적당한 곳에 삽입
<? if($w == 'u' && $is_admin) { ?>
<tr>
<td style='padding-left:20px; height:30px;'>· 작성날짜</td>
<td><input type=text name='wr_datetime' required itemname='시간' value='<?=$write[wr_datetime]?>' size='30'></td></tr>
<tr><td colspan=2 height=1 bgcolor=#F3F3F3></td></tr>
<? } ?>
write_update.skin.php
전부교체
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 자신만의 코드를 넣어주세요.
//goto_url("./board.php?bo_table=$bo_table&wr_id=$wr_id&page=$page");// 게시물 및 코멘트 작성, 수정 등의 작업을 수행할때 특정 카테고리에 대해서만 정렬되는 문제점을 해결하기 위한 방법(/bbs/경로의 원본소스를 건드릴 필요가 없음.(최근 버전에서는 해당 문제가 잡히는 사용자도 있고, 여전히 관련 오류를 갖고 있는 사용자도 있음(<<== 부분패치의 경우. 2005.11)
?>
<?
//관리자인 경우만 작성일 수정하기
if ($w == 'u' && $is_admin) {
$sql = " update $write_table set wr_datetime = '$wr_datetime'
where wr_id = '$wr_id' ";
sql_query($sql);
}
?>
<script language='javascript'>
alert('정상적으로 등록 되었습니다.');
</script>
<?
//goto_url("$g4[path]"); // 이 방법은 게시판 1차 접근차단 회원인 경우 사용.(2005.11)
?>