Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25986/plugins/serendipity_plugin_comments
Modified Files:
Tag: branch-smarty
serendipity_plugin_comments.php
Log Message:
* Support for adding timezone offsets in configuration
* Fixed XHTML compliance of calendar
* Adjusted coding style in some places
* Fixed entry preview to not show comments/trackbacks
* Fixed draft display in frontend entry overview
* New variable "is_preview" for smarty template
* Removed some hard-coded language strings in smarty templates
Index: serendipity_plugin_comments.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php,v
retrieving revision 1.24.2.1
retrieving revision 1.24.2.2
diff -u -d -r1.24.2.1 -r1.24.2.2
--- serendipity_plugin_comments.php 29 Oct 2004 11:02:39 -0000 1.24.2.1
+++ serendipity_plugin_comments.php 12 Nov 2004 15:43:29 -0000 1.24.2.2
@@ -152,7 +152,7 @@
' <a class="highlight" href="' . serendipity_archiveURL($row['entry_id'], $row['subject'], 'baseURL') .'#c' . $row['comment_id'] . '" title="' . htmlspecialchars($row['subject']) . '">'
. htmlspecialchars($row['subject'])
. '</a><br />' . "\n"
- . htmlspecialchars(strftime($dateformat, $row['stamp'])) . '<br />' . "\n"
+ . htmlspecialchars(serendipity_strftime($dateformat, $row['stamp'])) . '<br />' . "\n"
. strip_tags($entry['comment'], '<br><img>')
. '<br /><br /><br />' . "\n\n"
);
|