]> git.mjollnir.org Git - s9y.git/commitdiff
version bump
authorgarvinhicking <garvinhicking>
Wed, 12 Dec 2007 08:51:08 +0000 (08:51 +0000)
committergarvinhicking <garvinhicking>
Wed, 12 Dec 2007 08:51:08 +0000 (08:51 +0000)
docs/NEWS
plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php
serendipity_config.inc.php

index 6e5492b9ba8ae9fe40191b80ede1cc051d6796ef..3d052ad7e74a6b94d6f3f0ae57010e6536e36fc7 100644 (file)
--- 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)
 ------------------------------------------------------------------------
 
index edcb8d1dda20fd3722b5d998c5f97457ec4b293b..34b2f58aa70d4c62399838b1dd1cad2353336c8c 100644 (file)
@@ -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 .= '&bull; <a href="' . htmlspecialchars($url) . '" ' . (!empty($target) ? 'target="'.$target.'"' : '') . ' title="' . $text . '">' . htmlspecialchars($text) . "</a>";
+                                $content .= '&bull; <a href="' . htmlspecialchars($url) . '" ' . (!empty($target) ? 'target="'.$target.'"' : '') . ' title="' . $text . '">' . $text . "</a>";
                                 if (isset($item['isRecent'])) {
                                     $content .= ' <span style="color: Red; ">*</span>';
                                 }
index bdf91105891240395af8a715c0a34d465277f942..f2bb0434a4a2127b5754d29df350657ae781b66c 100644 (file)
@@ -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);