From 40e382a2644501d8c9603e52a0455f1643970534 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Wed, 11 Jan 2006 12:37:10 +0000 Subject: [PATCH] Add span selectors for Carl :) --- .../serendipity_plugin_comments.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php b/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php index 72db01b..1691d7b 100644 --- a/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php +++ b/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php @@ -22,7 +22,7 @@ class serendipity_plugin_comments extends serendipity_plugin $propbag->add('description', PLUGIN_COMMENTS_BLAHBLAH); $propbag->add('stackable', true); $propbag->add('author', 'Garvin Hicking/Tadashi Jokagi'); - $propbag->add('version', '1.4'); + $propbag->add('version', '1.5'); $propbag->add('requirements', array( 'serendipity' => '0.8', 'smarty' => '2.6.7', @@ -195,12 +195,12 @@ class serendipity_plugin_comments extends serendipity_plugin printf( PLUGIN_COMMENTS_ABOUT, - $user, + '' . $user . '', ' ' . htmlspecialchars($row['subject']) . '
' . "\n" - . htmlspecialchars(serendipity_strftime($dateformat, $row['stamp'])) . '
' . "\n" - . strip_tags($entry['comment'], '
') + . '' . htmlspecialchars(serendipity_strftime($dateformat, $row['stamp'])) . '
' . "\n" + . '' . strip_tags($entry['comment'], '
' . '
') . '


' . "\n\n" ); } -- 2.39.5