5.3 버전 내용 적용

This commit is contained in:
thisgun
2018-03-30 17:40:37 +09:00
parent 87fdbc7882
commit f7ac06d7d4
733 changed files with 36660 additions and 11623 deletions

View File

@ -2,12 +2,11 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<section id="bo_v_ans">
<h2>답변: <?php echo get_text($answer['qa_subject']); ?></h2>
<a href="<?php echo $rewrite_href; ?>" class="btn_b01">추가질문</a>
<section id="bo_v_ans" class="bo_v_wr">
<h2><span class="tit_rpl">답변</span><span><?php echo get_text($answer['qa_subject']); ?></span></h2>
<div id="ans_datetime">
<?php echo $answer['qa_datetime']; ?>
<i class="fa fa-clock-o" aria-hidden="true"></i> <?php echo $answer['qa_datetime']; ?>
</div>
<div id="ans_con">
<?php echo conv_content($answer['qa_content'], $answer['qa_html']); ?>
@ -15,10 +14,12 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<div id="ans_add">
<?php if($answer_update_href) { ?>
<a href="<?php echo $answer_update_href; ?>" class="btn_b01">답변수정</a>
<a href="<?php echo $answer_update_href; ?>" class="btn_b01 btn">답변수정</a>
<?php } ?>
<?php if($answer_delete_href) { ?>
<a href="<?php echo $answer_delete_href; ?>" class="btn_b01" onclick="del(this.href); return false;">답변삭제</a>
<a href="<?php echo $answer_delete_href; ?>" class="btn_b01 btn" onclick="del(this.href); return false;">답변삭제</a>
<?php } ?>
<a href="<?php echo $rewrite_href; ?>" class="btn_b02 btn">추가질문</a>
</div>
</section>