답변 2개
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
/bbs/write_update.php 파일에서
제일 하단의 아래 소스를
</strong></p>
<p>if ($file_upload_msg)
alert($file_upload_msg, G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.'&page='.$page.$qstr);
else
goto_url(G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.$qstr);</p>
<p><strong>
다음과 같이 변경해주시면 모든 게시판에서 글쓰기후 목록으로 이동됩니다.
</strong></p>
<p>if ($file_upload_msg)
alert($file_upload_msg, G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.'&page='.$page.$qstr);
else
goto_url(G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table);</p>
<p><strong>
참고로 특정 게시판만 목록으로 이동을 원하는경우 아래 소스로 추가변경후
if ($bo_table == "적용 게시판명") 부분에 게시판명을 적어주시면 됩니다.
</strong></p>
<p>if ($file_upload_msg)
alert($file_upload_msg, G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.'&page='.$page.$qstr);
else
if ($bo_table == "적용 게시판명")
goto_url(G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table);
else
goto_url(G5_HTTP_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.$qstr);</p>
<p><strong>
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인