From: garvinhicking Date: Wed, 11 Jan 2006 12:37:10 +0000 (+0000) Subject: Add span selectors for Carl :) X-Git-Tag: 1.0~181 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=40e382a2644501d8c9603e52a0455f1643970534;p=s9y.git Add span selectors for Carl :) --- 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" ); }