mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Use getUrl() instead of getPermanentUrl() in board skin title link
This commit is contained in:
parent
be2c53581f
commit
807461f0ac
4 changed files with 6 additions and 6 deletions
|
|
@ -3,7 +3,7 @@
|
|||
<div class="read_header">
|
||||
<h1>
|
||||
<a href="{getUrl('category',$oDocument->get('category_srl'), 'document_srl', '')}" class="category" cond="$module_info->use_category=='Y'">{$category_list[$oDocument->get('category_srl')]->title}</a>
|
||||
<a href="{$oDocument->getPermanentUrl()}">{$oDocument->getTitle()}</a>
|
||||
<a href="{$oDocument->getUrl()}">{$oDocument->getTitle()}</a>
|
||||
</h1>
|
||||
<p class="time">
|
||||
{$oDocument->getRegdate('Y.m.d H:i')}
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
<td class="time" cond="$val->type=='last_update' && $val->idx==-1">{zdate($document->get('last_update'),'Y.m.d')}</td>
|
||||
<td class="lastReply" cond="$val->type=='last_post' && $val->idx==-1">
|
||||
<block cond="(int)($document->get('comment_count'))>0">
|
||||
<a href="{$document->getPermanentUrl()}#comment" title="Last Reply">
|
||||
<a href="{$document->getUrl()}#comment" title="Last Reply">
|
||||
{zdate($document->get('last_update'),'Y.m.d')}
|
||||
</a>
|
||||
<span cond="$document->getLastUpdater()">
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
<td class="time" cond="$val->type=='last_update' && $val->idx==-1">{zdate($document->get('last_update'),'Y.m.d')}</td>
|
||||
<td class="lastReply" cond="$val->type=='last_post' && $val->idx==-1">
|
||||
<block cond="(int)($document->get('comment_count'))>0">
|
||||
<a href="{$document->getPermanentUrl()}#comment" title="Last Reply">
|
||||
<a href="{$document->getUrl()}#comment" title="Last Reply">
|
||||
{zdate($document->get('last_update'),'Y.m.d')}
|
||||
</a>
|
||||
<span cond="$document->getLastUpdater()">
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<div class="read_header">
|
||||
<h1>
|
||||
<a href="{getUrl('category',$oDocument->get('category_srl'), 'document_srl', '')}" class="category" cond="$module_info->use_category=='Y' && $oDocument->get('category_srl')">{$category_list[$oDocument->get('category_srl')]->title}</a>
|
||||
<a href="{$oDocument->getPermanentUrl()}">{$oDocument->getTitle()}</a>
|
||||
<a href="{$oDocument->getUrl()}">{$oDocument->getTitle()}</a>
|
||||
</h1>
|
||||
<p class="meta">
|
||||
<span class="author" cond="($module_info->display_author ?? 'Y') !== 'N'">
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@
|
|||
<td class="time" cond="$val->type=='last_update' && $val->idx==-1">{zdate($document->get('last_update'),'Y.m.d')}</td>
|
||||
<td class="lastReply" cond="$val->type=='last_post' && $val->idx==-1">
|
||||
<block cond="(int)($document->get('comment_count'))>0">
|
||||
<a href="{$document->getPermanentUrl()}#comment" title="Last Reply">
|
||||
<a href="{$document->getUrl()}#comment" title="Last Reply">
|
||||
{zdate($document->get('last_update'),'Y.m.d')}
|
||||
</a>
|
||||
<span cond="$document->getLastUpdater()">
|
||||
|
|
@ -109,7 +109,7 @@
|
|||
<td class="time" cond="$val->type=='last_update' && $val->idx==-1">{zdate($document->get('last_update'),'Y.m.d')}</td>
|
||||
<td class="lastReply" cond="$val->type=='last_post' && $val->idx==-1">
|
||||
<block cond="(int)($document->get('comment_count'))>0">
|
||||
<a href="{$document->getPermanentUrl()}#comment" title="Last Reply">
|
||||
<a href="{$document->getUrl()}#comment" title="Last Reply">
|
||||
{zdate($document->get('last_update'),'Y.m.d')}
|
||||
</a>
|
||||
<span cond="$document->getLastUpdater()">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue