From fa6b35b11dc36446dd0fb1e4cb11e645874acc58 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Thu, 15 Dec 2005 20:20:33 +0000 Subject: [PATCH] fix html issue, patch by sebastian raible --- .../serendipity_plugin_remoterss.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5