From: garvinhicking Date: Tue, 27 Nov 2007 16:01:10 +0000 (+0000) Subject: * Encode RSS feed links, Patch by Hanno Boeck X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=ffcdc5c543e8819182a47d9bab048485f1e81f37;p=s9y.git * Encode RSS feed links, Patch by Hanno Boeck --- diff --git a/docs/NEWS b/docs/NEWS index d31844f..d7aeb6b 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -67,6 +67,8 @@ Version 1.3 () Version 1.2.1 () ------------------------------------------------------------------------ + * Encode RSS feed links, Patch by Hanno Boeck + * Fix spartacus filter listing showing event plugin groups in the sidebar listing. diff --git a/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php b/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php index 3c2d8e7..edcb8d1 100644 --- a/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php +++ b/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php @@ -257,7 +257,7 @@ class serendipity_plugin_remoterss extends serendipity_plugin { $propbag->add('description', PLUGIN_REMOTERSS_BLAHBLAH); $propbag->add('stackable', true); $propbag->add('author', 'Udo Gerhards, Richard Thomas Harrison'); - $propbag->add('version', '1.10'); + $propbag->add('version', '1.11'); $propbag->add('requirements', array( 'serendipity' => '0.8', 'smarty' => '2.6.7', @@ -481,7 +481,7 @@ class serendipity_plugin_remoterss extends serendipity_plugin { } if ($use_rss_link) { - $content .= ''; + $content .= ''; } if (!empty($bulletimg)) { @@ -571,13 +571,13 @@ class serendipity_plugin_remoterss extends serendipity_plugin { } if ($blogrolling === true && (!empty($text) || !empty($url))) { - $content .= '• ' . htmlspecialchars($text) . ""; + $content .= '• ' . htmlspecialchars($text) . ""; if (isset($item['isRecent'])) { $content .= ' *'; } $content .= "
"; } elseif ((isset($item['type']) && $item['type'] == 'url') || !empty($url)) { - $content .= '• ' . $text . ""; + $content .= '• ' . $text . ""; $content .= "
"; } ++$i;