From 0e179f9efee58e46e5738ca7323a71bf937b3e14 Mon Sep 17 00:00:00 2001 From: zero Date: Wed, 4 Jul 2007 09:09:36 +0000 Subject: [PATCH] =?UTF-8?q?RSS=20=EC=B6=9C=EB=A0=A5=20=EB=AC=B8=EC=A0=9C?= =?UTF-8?q?=20=EC=88=98=EC=A0=95=20(=ED=83=9C=EA=B7=B8=20=EC=B6=9C?= =?UTF-8?q?=EB=A0=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/trunk@1867 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/rss/rss.view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/rss/rss.view.php b/modules/rss/rss.view.php index 6efcd4609..d66716601 100644 --- a/modules/rss/rss.view.php +++ b/modules/rss/rss.view.php @@ -30,7 +30,7 @@ if($module_info->mid != $mid) return $this->dispError(); // RSS 비활성화 되었는지 체크하여 비활성화시 에러 출력 - if($config->open_rss == 'N') return $this->dispError(); + if($module_info->open_rss == 'N') return $this->dispError(); // 출력할 컨텐츠 추출 $args->module_srl = $module_info->module_srl; @@ -75,7 +75,7 @@ $item->description = $item->getContent(); // 요약 공개일 경우 } else { - $item->description = cut_str(strip_tags($item->getContentText()),100,'...'); + $item->description = cut_str(strip_tags($item->getContent()),100,'...'); } $item->date = gmdate("D, d M Y H:i:s", $time); $content[$idx++] = $item;