diff --git a/plugins/rainlab/blog/components/rssfeed/default.htm b/plugins/rainlab/blog/components/rssfeed/default.htm index b4527ec87..66626cfb3 100644 --- a/plugins/rainlab/blog/components/rssfeed/default.htm +++ b/plugins/rainlab/blog/components/rssfeed/default.htm @@ -1,5 +1,5 @@ - + {{ this.page.meta_title ?: this.page.title }} {{ link }} @@ -9,9 +9,12 @@ {{ post.title }} {{ post.url }} - {{ post.url }} + {{ post.url }} {{ post.published_at.toRfc2822String }} - {{ post.summary }} + {{ post.summary }} + + {{post.content_html}} + {% endfor %} diff --git a/plugins/sobored/rss/Plugin.php b/plugins/sobored/rss/Plugin.php index 05d36bcd6..3158ca0ab 100644 --- a/plugins/sobored/rss/Plugin.php +++ b/plugins/sobored/rss/Plugin.php @@ -86,7 +86,7 @@ class Plugin extends PluginBase $fileContents .= "\t\t\n" . "\t\t\t" . htmlspecialchars($post->title, ENT_QUOTES, 'UTF-8') . "\n" . "\t\t\t" . Settings::get('link') . Settings::get('postPage') . "/" . $post->slug . "\n" . - "\t\t\t" . Settings::get('link') . Settings::get('postPage') . "/" . $post->slug . "\n" . + "\t\t\t" . Settings::get('link') . Settings::get('postPage') . "/" . $post->slug . "\n" . "\t\t\t" . $published->format(DateTime::RFC2822) . "\n" . "\t\t\tfeatured_image.">" . htmlspecialchars($description, ENT_QUOTES, 'UTF-8') . " ]]>\n" .