xe_blog layout skin update (to 2step)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4043 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-03-25 04:33:13 +00:00
parent d691339524
commit c00e3c8fd7
13 changed files with 125 additions and 121 deletions

View file

@ -28,6 +28,10 @@
$obj->sort_index = $order_target;
$obj->list_count = $list_count;
// 제목 길이 자르기
$subject_cut_size = $args->subject_cut_size;
if(!$subject_cut_size) $subject_cut_size = 0;
// comment 모듈의 model 객체를 받아서 getCommentList() method를 실행
$oCommentModel = &getModel('comment');
$output = $oCommentModel->getNewestCommentList($obj);
@ -37,6 +41,7 @@
$widget_info->title = $title;
$widget_info->comment_list = $output;
$widget_info->subject_cut_size = $subject_cut_size;
Context::set('widget_info', $widget_info);