Files
firstgarden-web-gnu/skin/qa/basic/view.answer.skin.php
2013-11-06 10:05:02 +09:00

25 lines
827 B
PHP

<?php
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>
<div id="ans_datetime">
<?php echo $answer['qa_datetime']; ?>
</div>
<div id="ans_con">
<?php echo conv_content($answer['qa_content'], $answer['qa_html']); ?>
</div>
<div id="ans_add">
<?php if($answer_update_href) { ?>
<a href="<?php echo $answer_update_href; ?>" class="btn_b01">답변수정</a>
<?php } ?>
<?php if($answer_delete_href) { ?>
<a href="<?php echo $answer_delete_href; ?>" class="btn_b01" onclick="del(this.href); return false;">답변삭제</a>
<?php } ?>
</div>
</section>