rss 위젯에 글자 자르기 옵션 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5177 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-12-24 07:48:50 +00:00
parent 5eb6ca353c
commit d14798b9b3
3 changed files with 20 additions and 2 deletions

View file

@ -13,7 +13,7 @@
<!--@foreach($widget_info->rss_list as $key => $item)-->
<li>
<span class="date">{$item->date}</span>
<span class="title"><a href="{$item->link}" onclick="window.open(this.href);return false">{htmlspecialchars($item->title)}</a></span>
<span class="title"><a href="{$item->link}" onclick="window.open(this.href);return false">{htmlspecialchars(cut_str($item->title, $widget_info->subject_cut_size))}</a></span>
</li>
<!--@end-->
</ul>