From c0547b52faf05d8e580b09f4e83b39898bd78f02 Mon Sep 17 00:00:00 2001 From: ngleader Date: Wed, 8 Apr 2009 06:29:17 +0000 Subject: [PATCH] =?UTF-8?q?rss=20=EC=A0=9C=EB=AA=A9=EC=9D=98=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=EC=9E=90=EC=96=B8=EC=96=B4=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6048 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/rss/rss.view.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/rss/rss.view.php b/modules/rss/rss.view.php index 3c1302205..9d61ec66f 100644 --- a/modules/rss/rss.view.php +++ b/modules/rss/rss.view.php @@ -81,10 +81,13 @@ $oDocumentModel = &getModel('document'); $output = $oDocumentModel->getDocumentList($args); $document_list = $output->data; + $oModuleController = &getController('module'); // 피드 제목 및 정보등을 추출 Context::getBrowserTitle if($mid) { $info->title = Context::getBrowserTitle(); + $oModuleController->replaceDefinedLangCode($info->title); + $info->title = str_replace('\'', ''',$info->title); if($config->feed_description) { $info->description = str_replace('\'', ''', htmlspecialchars($config->feed_description)); @@ -103,11 +106,14 @@ $site_module_info = Context::get('site_module_info'); $info->title = $site_module_info->browser_title; } + + $oModuleController->replaceDefinedLangCode($info->title); $info->title = str_replace('\'', ''', htmlspecialchars($info->title)); $info->description = str_replace('\'', ''', htmlspecialchars($total_config->feed_description)); $info->link = Context::getRequestUri(); $info->feed_copyright = str_replace('\'', ''', htmlspecialchars($total_config->feed_copyright)); } + if($total_config->image) $info->image = Context::getRequestUri().str_replace('\'', ''', htmlspecialchars($total_config->image)); $info->total_count = $output->total_count; $info->total_page = $output->total_page;