기본 게시판 스킨에서 댓글 페이지 변수가 따라다니지 않도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3786 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-02-25 13:03:55 +00:00
parent 066558cbfb
commit ff721dbd27
8 changed files with 21 additions and 21 deletions

View file

@ -62,7 +62,7 @@
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
@ -98,7 +98,7 @@
<div class="cell" style="width:{$module_info->thumbnail_width+30}px;height:{$height}px;"> <div class="cell" style="width:{$module_info->thumbnail_width+30}px;height:{$height}px;">
<!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))--> <!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))-->
<a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle)}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" class="thumb"/></a> <a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage', '')}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" class="thumb"/></a>
<!--@else--> <!--@else-->
<img src="./images/common/blank.gif" border="0" alt="" class="thumb" width="{$module_info->thumbnail_width}" height="{$module_info->thumbnail_height}" /> <img src="./images/common/blank.gif" border="0" alt="" class="thumb" width="{$module_info->thumbnail_width}" height="{$module_info->thumbnail_height}" />
<!--@end--> <!--@end-->
@ -112,7 +112,7 @@
<input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /> <input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> />
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies">(<strong>{$document->getCommentCount()}</strong>)</span> <span class="replyAndTrackback" title="Replies">(<strong>{$document->getCommentCount()}</strong>)</span>

View file

@ -55,7 +55,7 @@
<!--@if($module_info->use_category == "Y")--><td>{$category_list[$document->get('category_srl')]->title}</td><!--@end--> <!--@if($module_info->use_category == "Y")--><td>{$category_list[$document->get('category_srl')]->title}</td><!--@end-->
<td class="title"> <td class="title">
<div class="title_wrap"> <div class="title_wrap">
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span> <span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span>
@ -84,7 +84,7 @@
<!--@if($module_info->use_category == "Y")--><td>{$category_list[$document->get('category_srl')]->title}</td><!--@end--> <!--@if($module_info->use_category == "Y")--><td>{$category_list[$document->get('category_srl')]->title}</td><!--@end-->
<td class="title"> <td class="title">
<div class="title_wrap"> <div class="title_wrap">
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span> <span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span>

View file

@ -56,7 +56,7 @@
<!--@if($module_info->use_category == "Y")--><td>{$category_list[$document->get('category_srl')]->title}</td><!--@end--> <!--@if($module_info->use_category == "Y")--><td>{$category_list[$document->get('category_srl')]->title}</td><!--@end-->
<td class="title" colspan="2"> <td class="title" colspan="2">
<div class="title_wrap"> <div class="title_wrap">
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span> <span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span>
@ -87,13 +87,13 @@
<!--@if($module_info->use_category == "Y")--><td rowspan="2">{$category_list[$document->get('category_srl')]->title}</td><!--@end--> <!--@if($module_info->use_category == "Y")--><td rowspan="2">{$category_list[$document->get('category_srl')]->title}</td><!--@end-->
<!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))--> <!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))-->
<td rowspan="2" class="thumb"><a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle)}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" /></a></td> <td rowspan="2" class="thumb"><a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage', '')}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" /></a></td>
<td class="title noline"> <td class="title noline">
<!--@else--> <!--@else-->
<td class="title noline" colspan="2"> <td class="title noline" colspan="2">
<!--@end--> <!--@end-->
<div class="title_wrap"> <div class="title_wrap">
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span> <span class="replyAndTrackback" title="Replies &amp; Trackbacks">[R<strong>{$document->getCommentCount()}</strong>]</span>
@ -122,7 +122,7 @@
<tr class="bg{($no+1)%2+1}"> <tr class="bg{($no+1)%2+1}">
<td colspan="{$_col_count}" class="summary"> <td colspan="{$_col_count}" class="summary">
<!--@if($grant->view)--> <!--@if($grant->view)-->
<a href="{getUrl('document_srl',$document->document_srl)}">{$document->getSummary(120)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage', '')}">{$document->getSummary(120)}</a>
<!--@end--> <!--@end-->
&nbsp; &nbsp;
</td> </td>

View file

@ -26,7 +26,7 @@
<!--@foreach($notice_list as $no => $document)--> <!--@foreach($notice_list as $no => $document)-->
<div class="item"> <div class="item">
<span class="date">[{$document->getRegdate("Y-m-d")}]</span> <span class="date">[{$document->getRegdate("Y-m-d")}]</span>
<a href="{getUrl('document_srl',$document->document_srl)}">{$document->getTitle()}</a> <a href="{getUrl('document_srl',$document->document_srl,'cpage','')}">{$document->getTitle()}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>

View file

@ -74,7 +74,7 @@
<td class="topic"> <td class="topic">
<strong>{$lang->notice} | <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a></strong> <strong>{$lang->notice} | <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a></strong>
{$document->printExtraImages(60*60*$module_info->duration_new)} {$document->printExtraImages(60*60*$module_info->duration_new)}
<!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--> <!--@if($module_info->use_category == "Y" && $document->get('category_srl'))-->
@ -114,7 +114,7 @@
<td class="topic"> <td class="topic">
<strong><a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a></strong> <strong><a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a></strong>
{$document->printExtraImages(60*60*$module_info->duration_new)} {$document->printExtraImages(60*60*$module_info->duration_new)}

View file

@ -61,7 +61,7 @@
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
@ -96,7 +96,7 @@
<div class="cell" style="width:{$module_info->thumbnail_width+30}px;height:{$height}px;"> <div class="cell" style="width:{$module_info->thumbnail_width+30}px;height:{$height}px;">
<!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))--> <!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))-->
<a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle)}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" class="thumb"/></a> <a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage','')}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" class="thumb"/></a>
<!--@else--> <!--@else-->
<img src="./images/common/blank.gif" border="0" alt="" class="thumb" width="{$module_info->thumbnail_width}" height="{$module_info->thumbnail_height}" /> <img src="./images/common/blank.gif" border="0" alt="" class="thumb" width="{$module_info->thumbnail_width}" height="{$module_info->thumbnail_height}" />
<!--@end--> <!--@end-->
@ -110,7 +110,7 @@
<input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /> <input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> />
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies">(<strong>{$document->getCommentCount()}</strong>)</span> <span class="replyAndTrackback" title="Replies">(<strong>{$document->getCommentCount()}</strong>)</span>

View file

@ -69,7 +69,7 @@
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
@ -99,7 +99,7 @@
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>

View file

@ -67,7 +67,7 @@
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
@ -96,7 +96,7 @@
<!--@if($grant->is_admin)--><td class="checkbox" rowspan="2"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end--> <!--@if($grant->is_admin)--><td class="checkbox" rowspan="2"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end-->
<!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))--> <!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))-->
<td rowspan="2" class="thumb"><a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle)}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" /></a></td> <td rowspan="2" class="thumb"><a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage','')}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" border="0" alt="" /></a></td>
<td class="webzineTitle"> <td class="webzineTitle">
<!--@else--> <!--@else-->
<td class="webzineTitle" colspan="2"> <td class="webzineTitle" colspan="2">
@ -105,7 +105,7 @@
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <!--@end-->
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle)}">{$document->getTitle($module_info->subject_cut_size)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<!--@if($document->getCommentCount())--> <!--@if($document->getCommentCount())-->
<span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span> <span class="replyAndTrackback" title="Replies"><img src="./images/common/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
@ -132,7 +132,7 @@
<tr class="bg{($no+1)%2+1}"> <tr class="bg{($no+1)%2+1}">
<td colspan="{$_col_count}" class="summary"> <td colspan="{$_col_count}" class="summary">
<!--@if($grant->view)--> <!--@if($grant->view)-->
<a href="{getUrl('document_srl',$document->document_srl)}">{$document->getSummary(120)}</a> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getSummary(120)}</a>
<!--@end--> <!--@end-->
&nbsp; &nbsp;
</td> </td>