git-svn-id: http://xe-core.googlecode.com/svn/trunk@1628 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-14 06:05:26 +00:00
parent 3f649ab32a
commit 67572cebaf
39 changed files with 543 additions and 459 deletions

View file

@ -1,16 +1,16 @@
<!-- 댓글 정보 출력 -->
<a name="comment_top_{$document_srl}"></a>
<div>
{$lang->comment} : {count($document->comment_list)}
{$lang->comment} : {$oDocument->getCommentCount()}
</div>
<!-- 댓글 출력 -->
<div>
<!-- 댓글 목록 -->
<!--@if($document->comment_list)-->
<!--@if($oDocument->getCommentCount())-->
<!--@foreach($document->comment_list as $key => $val)-->
<!--@foreach($oDocument->getComments() as $key => $val)-->
<a name="comment_{$key}"></a>
<div style="margin-left:{$val->depth*15}px" >
<table border="1" width="100%">
@ -68,7 +68,7 @@
<!-- 댓글 입력 폼 -->
<!--@if($grant->write_comment && $document->lock_comment == 'N')-->
<!--@if($grant->write_comment && !$oDocument->isLocked())-->
<!--#include("./comment_form.html")-->
<!--@end-->