Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17173/plugins/serendipity_plugin_comments
Modified Files:
serendipity_plugin_comments.php
Log Message:
- Use '-' as separator for IDs and words in our URI
- Don't use the title of an entry as GUID in RSS feeds
- Convert some static '/categories' to PATH_CATEGORIES
Bumps version to 0.6.12-CVS, requires rewrite update
Index: serendipity_plugin_comments.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- serendipity_plugin_comments.php 5 Aug 2004 13:41:21 -0000 1.22
+++ serendipity_plugin_comments.php 24 Aug 2004 17:33:04 -0000 1.23
@@ -148,7 +148,7 @@
PLUGIN_COMMENTS_ABOUT,
$user,
- ' <a class="highlight" href="' . serendipity_archiveURL($row['entry_id'], $row['subject'], 'baseURL', false) .'#c' . $row['comment_id'] . '" title="' . htmlspecialchars($row['subject']) . '">'
+ ' <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"
|