mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
#1433 슬라이드 사용안함 속성이 반영되지 않는 문제 수정
$_enable_slide의 기본값을 false로 하고, 슬라이더 사용시에만 true로 하도록 수정 추가로 사용하지 않고 있는 $layout_info->use_slide 대신 $_enable_slide로 수정(설정하는 부분만 있고 정작 사용하는 부분이 없습니다)
This commit is contained in:
parent
6c908629d0
commit
d0246aba68
1 changed files with 6 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
{@ $sub_header_title = $module_info->browser_title}
|
||||
|
||||
<!--// 초기화 -->
|
||||
{@ $_enable_slide = true}
|
||||
{@ $_enable_slide = false}
|
||||
{@ $_enable_unb = false}
|
||||
{@ $_sample_slide = false}
|
||||
{@ $_sample_footer = false}
|
||||
|
|
@ -29,9 +29,13 @@
|
|||
<block cond="!$layout_info->use_slide">{@ $layout_info->use_slide = 'Y'}</block>
|
||||
<block cond="!$layout_info->enable_intergration_search">{@ $layout_info->enable_intergration_search = 'Y'}</block>
|
||||
|
||||
<block cond="$layout_info->use_slide === 'Y'">
|
||||
{@ $_enable_slide = true}
|
||||
</block>
|
||||
<block cond="$layout_info->use_demo === 'Y'">
|
||||
{@ $_sample_slide = true}
|
||||
<block cond="$_is_indexmodule">{@ $layout_info->use_slide = 'Y'}</block>
|
||||
{@ $_enable_slide = false}
|
||||
<block cond="$_is_indexmodule">{@ $_enable_slide = true}</block>
|
||||
</block>
|
||||
<block cond="!$layout_info->slide_img1">{@ $_sample_slide = true}</block>
|
||||
<block cond="$layout_info->use_demo === 'Y'">{@ $_sample_footer = true}</block>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue