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?>";
}
--------------------------------------------------------------------------
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?>";";
}
댓글 3개
write.skin.php에서
<input type=hidden name=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?> <--- 이부분을 지우세요