Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_shoutbox
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17845/plugins/serendipity_plugin_shoutbox
Modified Files:
serendipity_plugin_shoutbox.php
Log Message:
Merged changes: htmlspecialchars instead of htmlentities for preserving native charsets.
Index: serendipity_plugin_shoutbox.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_shoutbox/serendipity_plugin_shoutbox.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- serendipity_plugin_shoutbox.php 27 Mar 2004 12:10:41 -0000 1.5
+++ serendipity_plugin_shoutbox.php 7 Apr 2004 12:42:44 -0000 1.6
@@ -186,7 +186,7 @@
serendipity_plugin_api::hook_event('frontend_display', $entry);
printf(
- "<b>" . htmlentities(strftime($dateformat, $row['stamp'])) . '</b> <br />' . "\n"
+ "<b>" . htmlspecialchars(strftime($dateformat, $row['stamp'])) . '</b> <br />' . "\n"
. $entry['comment']
. $deleteLink
. '<br /><br /><br />' . "\n\n"
|