글쓰기에는 $wr_id 값을 사용하지 않습니다(오류메세지) 정보
글쓰기에는 $wr_id 값을 사용하지 않습니다(오류메세지)본문
자주찾는질문 스킨을 사용하고 있는데요
글쓰기에서 "edit 전환" 편집모드로 전환할 때 이런 에러메세지가 나옵니다.
" 글쓰기에는 $wr_id 값을 사용하지 않습니다. "
이런 메세지가 나옵니다.
이유를 알수가 없네요..
답변 꼭 부탁드립니다.
댓글 전체
해당 스킨
write.skin.php에서
<input type=hidden name=wr_id ... >
이런 줄이 있으면 지우세요.
write.skin.php에서
<input type=hidden name=wr_id ... >
이런 줄이 있으면 지우세요.
지워도 똑 같은 메세지입니다. ㅠ.ㅠ;
write.skin.php 에서
--------------------------------------------------------
function chedit_mode() {
if (confirm("일반 글쓰기 모드로 전환하시겠습니까?\n\n(주의 : 현재 입력된 내용은 지워지게 됩니다.)"))
location.href = "<?=$g4[bbs_path]?>/write.php?bo_table=<?=$bo_table?>&edit=off&w=<?=$w?>&wr_id=<?=$wr_id?>";
}
---------------------------------------------------
&wr_id=<?=$wr_id?> <--- 이부분을 지우세요
--------------------------------------------------------------------------
function chedit_mode() {
if (confirm("에디터 글쓰기로 전환하시겠습니까?\n\n웹 편집기로 자유로운 입력을 하실 수 있습니다\n\n(주의 : 현재 입력된 내용은 지워지게 됩니다.)"))
location.href = "<?=$g4[bbs_path]?>/write.php?bo_table=<?=$bo_table?>&edit=on&w=<?=$w?>&wr_id=<?=$wr_id?>";";
}
------------------------------------------------------------------
&wr_id=<?=$wr_id?> <--- 이부분을 지우세요
--------------------------------------------------------
function chedit_mode() {
if (confirm("일반 글쓰기 모드로 전환하시겠습니까?\n\n(주의 : 현재 입력된 내용은 지워지게 됩니다.)"))
location.href = "<?=$g4[bbs_path]?>/write.php?bo_table=<?=$bo_table?>&edit=off&w=<?=$w?>&wr_id=<?=$wr_id?>";
}
---------------------------------------------------
&wr_id=<?=$wr_id?> <--- 이부분을 지우세요
--------------------------------------------------------------------------
function chedit_mode() {
if (confirm("에디터 글쓰기로 전환하시겠습니까?\n\n웹 편집기로 자유로운 입력을 하실 수 있습니다\n\n(주의 : 현재 입력된 내용은 지워지게 됩니다.)"))
location.href = "<?=$g4[bbs_path]?>/write.php?bo_table=<?=$bo_table?>&edit=on&w=<?=$w?>&wr_id=<?=$wr_id?>";";
}
------------------------------------------------------------------
&wr_id=<?=$wr_id?> <--- 이부분을 지우세요