Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12973/plugins/serendipity_plugin_comments
Modified Files:
serendipity_plugin_comments.php
Log Message:
Now the '+' separator style is only used for article overview URL generation
and URL detail link generation, as well as the two entry plugins. Every
other occurence uses the old '_' way to stay backwards compatible.
Index: serendipity_plugin_comments.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_comments/serendipity_plugin_comments.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- serendipity_plugin_comments.php 22 Jun 2004 13:45:47 -0000 1.19
+++ serendipity_plugin_comments.php 5 Jul 2004 09:59:56 -0000 1.20
@@ -147,7 +147,7 @@
PLUGIN_COMMENTS_ABOUT,
$user,
- ' <a class="highlight" href="' . serendipity_archiveURL($row['entry_id'], $row['subject']) .'#c' . $row['comment_id'] . '" title="' . htmlspecialchars($row['subject']) . '">'
+ ' <a class="highlight" href="' . serendipity_archiveURL($row['entry_id'], $row['subject'], 'baseURL', false) .'#c' . $row['comment_id'] . '" title="' . htmlspecialchars($row['subject']) . '">'
. htmlspecialchars($row['subject'])
. '</a><br />' . "\n"
. htmlspecialchars(strftime($dateformat, $row['stamp'])) . '<br />' . "\n"
|