git-svn-id: http://xe-core.googlecode.com/svn/trunk@1121 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-13 02:53:36 +00:00
parent 6d6d6c5b8b
commit c2117c1a16
34 changed files with 122 additions and 133 deletions

View file

@ -22,17 +22,17 @@
</tr>
<tr>
<th>{$lang->writer}</th>
<td><div class="member_{$val->member_srl}">{$val->nick_name}</div></td>
<td><div class="member_{$val->member_srl}">{htmlspecialchars($val->nick_name)}</div></td>
</tr>
<!--@if($val->homepage)-->
<tr>
<th>{$lang->homepage}</th>
<td><a href="{$val->homepage}" onclick="winopen('{$val->homepage}'); return false;">{$val->homepage}</a></td>
<td><a href="{$val->homepage}" onclick="winopen('{$val->homepage}'); return false;">{htmlspecialchars($val->homepage)}</a></td>
</tr>
<!--@end-->
<tr>
<th>{$lang->content}</th>
<td height="100" valign="top">{nl2br($val->content)}</td>
<td height="100" valign="top">{$val->content}</td>
</tr>
<tr>
<th>ipaddress</th>

View file

@ -18,11 +18,11 @@
</tr>
<tr>
<th>{$lang->writer}</th>
<td><div class="member_{$source_comment->member_srl}">{$source_comment->nick_name}</div></td>
<td><div class="member_{$source_comment->member_srl}">{htmlspecialchars($source_comment->nick_name)}</div></td>
</tr>
<tr>
<th>{$lang->content}</th>
<td height="100" valign="top">{nl2br($source_comment->content)}</td>
<td height="100" valign="top">{$source_comment->content}</td>
</tr>
</table>
</div>
@ -43,7 +43,7 @@
<!--@if(!$is_logged)-->
<tr>
<th>{$lang->writer}</th>
<td><input type="text" name="nick_name" value="{$comment->nick_name}" /></td>
<td><input type="text" name="nick_name" value="{htmlspecialchars($comment->nick_name)}" /></td>
</tr>
<tr>
<th>{$lang->password}</th>
@ -51,11 +51,11 @@
</tr>
<tr>
<th>{$lang->email_address}</th>
<td><input type="text" name="email_address" value="{$comment->email_address}"/></td>
<td><input type="text" name="email_address" value="{htmlspecialchars($comment->email_address)}"/></td>
</tr>
<tr>
<th>{$lang->homepage}</th>
<td><input type="text" name="homepage" value="{$comment->homepage}" /></td>
<td><input type="text" name="homepage" value="{htmlspecialchars($comment->homepage)}" /></td>
</tr>
<!--@end-->

View file

@ -1,24 +1,6 @@
<!--%import("js/board.js")-->
{$module_info->header_text}
<!-- 게시판 제목/ 설명 -->
<!--@if($module_info->title || $module_info->desc)-->
<div>
<table>
<tr>
<td>{$module_info->title}</td>
</tr>
<!--@if($module_info->desc)-->
<tr>
<td>{nl2br($module_info->desc)}</td>
</tr>
<!--@end-->
</table>
</div>
<!--@end-->
<!-- 게시판 정보 -->
<div>
<!--@if($total_count)-->

View file

@ -44,10 +44,11 @@
<!--@if($grant->is_admin == 'Y')-->
<input type="checkbox" value="{$val->document_srl}" onclick="doAddCart('{$mid}',this)" <!--@if($check_list[$val->document_srl])-->checked="true"<!--@end--> />
<!--@end-->
<!--@if($grant->view)-->
<a href="{getUrl('document_srl',$val->document_srl)}">{$val->title}</a>
<a href="{getUrl('document_srl',$val->document_srl)}">{htmlspecialchars($val->title)}</a>
<!--@else-->
{$val->title}
{htmlspecialchars($val->title)}
<!--@end-->
<!--@if($val->comment_count>0)-->

View file

@ -21,12 +21,12 @@
<tr>
<th>{$lang->title}</th>
<td>{$document->title}</td>
<td>{htmlspecialchars($document->title)}</td>
</tr>
<!--@if($document->homepage)-->
<tr>
<th>{$lang->homepage}</th>
<td><a href="{$document->homepage}" onclick="winopen('{$document->homepage}'); return false;">{$document->homepage}</a></td>
<td><a href="{$document->homepage}" onclick="winopen('{$document->homepage}'); return false;">{htmlspecialchars($document->homepage)}</a></td>
</tr>
<!--@end-->
<tr>
@ -35,7 +35,7 @@
</tr>
<tr>
<th>{$lang->writer}</th>
<td><div class="member_{$document->member_srl}">{$document->nick_name}</div></td>
<td><div class="member_{$document->member_srl}">{htmlspecialchars($document->nick_name)}</div></td>
</tr>
<tr>
<th>{$lang->readed_count}</th>
@ -64,7 +64,7 @@
<!--@if($document->tags)-->
<tr>
<th>{$lang->tag}</th>
<td>{$document->tags}</td>
<td>{htmlspecialchars($document->tags)}</td>
</tr>
<!--@end-->

View file

@ -34,17 +34,17 @@
</tr>
<tr>
<th>{$lang->email_address}</th>
<td><input type="text" name="email_address" value="{$document->email_address}"/></td>
<td><input type="text" name="email_address" value="{htmlspecialchars($document->email_address)}"/></td>
</tr>
<tr>
<th>{$lang->homepage}</th>
<td><input type="text" name="homepage" value="{$document->homepage}" /></td>
<td><input type="text" name="homepage" value="{htmlspecialchars($document->homepage)}" /></td>
</tr>
<!--@end-->
<tr>
<th>{$lang->title}</th>
<td><input type="text" name="title" value="{$document->title}" /></td>
<td><input type="text" name="title" value="{htmlspecialchars($document->title)}" /></td>
</tr>
<tr>
<td>&nbsp;</td>