PXE Imperial의 경로표시기가 3단계에서 특정 메뉴에 고정되어버리는 현상을 해결하려면 기존 코드를 아래 코드로 대체하시기 바랍니다. 이 버그는 현재 다운로드 받는 파일에는 이미 수정이 되어있습니다.
layout.html
<div class="menuPath">
<div class="left">
<!-- depth 1 -->
<!--@foreach($main_menu->list as $key => $val)-->
<!--@if($val['selected'])-->{@$depth1 = $val}<!--@end-->
<!--@end-->
<!-- depth 2 -->
<!--@if($depth1)-->
<!--@foreach($depth1['list'] as $key => $val)-->
<!--@if($val['selected'])-->{@$depth2 = $val}<!--@end-->
<!--@end-->
<!--@end-->
<!-- depth 3 -->
<!--@if($depth2)-->
<!--@foreach($depth2['list'] as $key => $val)-->
<!--@if($val['selected'])-->{@$depth3 = $val}<!--@end-->
<!--@end-->
<!--@end-->
<a href="{getSiteUrl()}">Home</a>
<!--@if($depth1)-->
<a href="{$depth1['href']}">{$depth1['text']}</a>
<!--@end-->
<!--@if($depth2)-->
<a href="{$depth2['href']}">{$depth2['text']}</a>
<!--@end-->
<!--@if($depth3)-->
<a href="{$depth3['href']}">{$depth3['text']}</a>
<!--@end-->
<span class="nowLocation">
<!--@if($module_info->title)-->
{$module_info->title}
<!--@else-->
{Context::getBrowserTitle()}
<!--@end-->
</span>
</div>
<div class="terminator"></div>
</div><!--menuPath 끝-->