묻고답하기
확장변수에서 오류입니다.
2007.08.22 21:46
<div>
<!--@foreach($document_list as $no => $document)-->
<!--@if(!$document->isNotice())-->
<div class="boardCell">
<!--@if($document->thumbnailExists(250))-->
<a href="{getUrl('','document_srl',$document->document_srl)}"><img src="{$document->getThumbnail(250)}" border="0" alt="" class="thumb"/></a>
<!--@else-->
<img src="./images/blank.gif" border="0" alt="" class="thumb" width="250" height="250" />
<!--@end-->
<div class="title">
<!--@if($grant->is_admin)-->
<input type="checkbox" value="{$document->document_srl}" onclick="doAddCart('{$mid}',this)" <!--@if($check_list[$document->document_srl])-->checked="checked"<!--@end--> />
<!--@end-->
<!--@if($grant->view)-->
<!--@if($search_target && $search_keyword)-->
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="window.open(this.href,'viewDocument');return false;">{$document->getTitleText(8,'')}</a>
<!--@else-->
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText(8,'')}</a>
<!--@end-->
<!--@else-->
{$document->getTitleText(8,'')}
<!--@end-->
</div>
</div>
<!--@if($oDocument->isExtraVarsExists())-->
<table cellspacing="0" summary="" class="extraVarsList">
<col width="150" />
<col />
<!--@foreach($module_info->extra_vars as $key => $val)-->
<!--@if($val->name)-->
<tr class="bg{($key+1)%2+1}">
<th scope="row">{$val->name}</th>
<td>
<!-- 확장변수(extra_var)의 type에 따른 값을 출력하기 위해서 특별히 제작된 파일을 include 한다 -->
<!--#include("./extra_var_value.html")-->
</td>
</tr>
<!--@end-->
<!--@end-->
</table>
<!--@end-->
<!--@end-->
<!--@end-->
<div>
갤러리 형태에서 확장변수를 보여주려고 하는데 안됩니다. 어떻게 해야 하나요?