Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_history
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12973/plugins/serendipity_plugin_history
Modified Files:
serendipity_plugin_history.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_history.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_history/serendipity_plugin_history.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- serendipity_plugin_history.php 25 Jun 2004 08:34:19 -0000 1.2
+++ serendipity_plugin_history.php 5 Jul 2004 09:59:56 -0000 1.3
@@ -155,7 +155,9 @@
for($x=0; $x < $e_c; $x++) {
$url = serendipity_archiveURL($e[$x]['id'],
$e[$x]['title'],
- 'serendipityHTTPPath');
+ 'serendipityHTTPPath',
+ false
+ );
$date = ($displaydate=='0') ? '' : strftime($dateformat);
echo $date . "<a href='$url'>{$e[$x]['title']}</a> " .
strip_tags($e[$x]['body']) . '<br />';
|