From: garvinhicking Date: Thu, 15 Dec 2005 20:20:33 +0000 (+0000) Subject: fix html issue, patch by sebastian raible X-Git-Tag: 1.0~226 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=fa6b35b11dc36446dd0fb1e4cb11e645874acc58;p=s9y.git fix html issue, patch by sebastian raible --- diff --git a/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php b/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php index d964eab..efd028f 100644 --- a/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php +++ b/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php @@ -523,13 +523,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;