mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 03:52:15 +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 width="140" />
|
||||||
<col />
|
<col />
|
||||||
<caption>{$lang->member_default_info}</caption>
|
<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>
|
<tr>
|
||||||
<th scope="row">{$lang->user_name}</th>
|
<th scope="row">{$lang->user_name}</th>
|
||||||
<td>{htmlspecialchars($member_info->user_name)}</td>
|
<td>{htmlspecialchars($member_info->user_name)}</td>
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,13 @@
|
||||||
// 출력된 목록 수
|
// 출력된 목록 수
|
||||||
$list_count = (int)$args->list_count;
|
$list_count = (int)$args->list_count;
|
||||||
if(!$list_count) $list_count = 5;
|
if(!$list_count) $list_count = 5;
|
||||||
|
$args->list_count = $list_count;
|
||||||
|
|
||||||
// 중복 허용/ 비허용 체크
|
// 중복 허용/ 비허용 체크
|
||||||
if($args->allow_repetition != 'Y') {
|
if($args->allow_repetition != 'Y') {
|
||||||
$output = executeQueryArray('widgets.planet_document.getUniqueNewestDocuments');
|
$output = executeQueryArray('widgets.planet_document.getUniqueNewestDocuments', $args);
|
||||||
} else {
|
} else {
|
||||||
$output = executeQueryArray('widgets.planet_document.getNewestDocuments');
|
$output = executeQueryArray('widgets.planet_document.getNewestDocuments', $args);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 플래닛 글 목록 구함
|
// 플래닛 글 목록 구함
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
<!--@if($layout_info->mid)-->
|
<!--@if($layout_info->mid)-->
|
||||||
<a href="{getUrl('','mid',$layout_info->mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
|
<a href="{getUrl('','mid',$layout_info->mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
|
||||||
<!--@else-->
|
<!--@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-->
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue