Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_shoutbox
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1975
Modified Files:
Tag: branch_0_6
serendipity_plugin_shoutbox.php
Log Message:
MFH
Index: serendipity_plugin_shoutbox.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_shoutbox/serendipity_plugin_shoutbox.php,v
retrieving revision 1.5.4.1
retrieving revision 1.5.4.2
diff -u -d -r1.5.4.1 -r1.5.4.2
--- serendipity_plugin_shoutbox.php 7 Apr 2004 12:38:20 -0000 1.5.4.1
+++ serendipity_plugin_shoutbox.php 3 May 2004 11:55:19 -0000 1.5.4.2
@@ -185,12 +185,10 @@
$entry = array('comment' => wordwrap($comment, $wordwrap, "\n",1));
serendipity_plugin_api::hook_event('frontend_display', $entry);
- printf(
- "<b>" . htmlspecialchars(strftime($dateformat, $row['stamp'])) . '</b> <br />' . "\n"
+ echo "<b>" . htmlspecialchars(strftime($dateformat, $row['stamp'])) . '</b> <br />' . "\n"
. $entry['comment']
. $deleteLink
- . '<br /><br /><br />' . "\n\n"
- );
+ . '<br /><br /><br />' . "\n\n";
}
}
?>
|