mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
플래닛 문서 위젯의 목록수가 적용되지 않던 문제 수정. 태그목록(꼬리표) 위젯에서 통합검색 페이지 링크시 변수명 잘못된 것 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5212 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8dade33f8f
commit
7fab10e4ac
3 changed files with 4 additions and 12 deletions
|
|
@ -5,15 +5,6 @@
|
|||
<col width="140" />
|
||||
<col />
|
||||
<caption>{$lang->member_default_info}</caption>
|
||||
<tr class="first-child">
|
||||
<th scope="row">{$lang->user_id}</th>
|
||||
<td>
|
||||
{$member_info->user_id}
|
||||
<!--@if($member_info->is_denied == 'Y')-->
|
||||
({$lang->denied})
|
||||
<!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->user_name}</th>
|
||||
<td>{htmlspecialchars($member_info->user_name)}</td>
|
||||
|
|
|
|||
|
|
@ -21,12 +21,13 @@
|
|||
// 출력된 목록 수
|
||||
$list_count = (int)$args->list_count;
|
||||
if(!$list_count) $list_count = 5;
|
||||
$args->list_count = $list_count;
|
||||
|
||||
// 중복 허용/ 비허용 체크
|
||||
if($args->allow_repetition != 'Y') {
|
||||
$output = executeQueryArray('widgets.planet_document.getUniqueNewestDocuments');
|
||||
$output = executeQueryArray('widgets.planet_document.getUniqueNewestDocuments', $args);
|
||||
} else {
|
||||
$output = executeQueryArray('widgets.planet_document.getNewestDocuments');
|
||||
$output = executeQueryArray('widgets.planet_document.getNewestDocuments', $args);
|
||||
}
|
||||
|
||||
// 플래닛 글 목록 구함
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<!--@if($layout_info->mid)-->
|
||||
<a href="{getUrl('','mid',$layout_info->mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('act','IS','search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
|
||||
<a href="{getUrl('act','IS','search_target','tag','is_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue