From: garvinhicking Date: Wed, 12 Dec 2007 08:51:08 +0000 (+0000) Subject: version bump X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0db6085bfe7a4e65addebf1a04876a74d8f1270f;p=s9y.git version bump --- diff --git a/docs/NEWS b/docs/NEWS index 6e5492b..3d052ad 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -1,5 +1,11 @@ # $Id$ +Version 1.2.2 () +------------------------------------------------------------------------ + + * Removed unnecessary htmlspecialchars() in the OPML output of the + remote RSS sidebar plugin. + Version 1.2.1 (December 8th, 2007) ------------------------------------------------------------------------ diff --git a/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php b/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php index edcb8d1..34b2f58 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.11'); + $propbag->add('version', '1.12'); $propbag->add('requirements', array( 'serendipity' => '0.8', 'smarty' => '2.6.7', @@ -571,7 +571,7 @@ class serendipity_plugin_remoterss extends serendipity_plugin { } if ($blogrolling === true && (!empty($text) || !empty($url))) { - $content .= '• ' . htmlspecialchars($text) . ""; + $content .= '• ' . $text . ""; if (isset($item['isRecent'])) { $content .= ' *'; } diff --git a/serendipity_config.inc.php b/serendipity_config.inc.php index bdf9110..f2bb043 100644 --- a/serendipity_config.inc.php +++ b/serendipity_config.inc.php @@ -41,7 +41,7 @@ if (defined('USE_MEMSNAP')) { } // The version string -$serendipity['version'] = '1.2.1'; +$serendipity['version'] = '1.2.2'; // Setting this to 'false' will enable debugging output. All alpa/beta/cvs snapshot versions will emit debug information by default. To increase the debug level (to enable Smarty debugging), set this flag to 'debug'. $serendipity['production'] = (preg_match('@\-(alpha|beta|cvs)@', $serendipity['version']) ? false : true);