]> git.mjollnir.org Git - s9y.git/commitdiff
Remove unnecessary htmlspecialchars
authorgarvinhicking <garvinhicking>
Wed, 12 Dec 2007 08:49:54 +0000 (08:49 +0000)
committergarvinhicking <garvinhicking>
Wed, 12 Dec 2007 08:49:54 +0000 (08:49 +0000)
plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php

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>';
                                 }