Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17476
Modified Files:
Tag: branch-0-5
NEWS serendipity_sidebar_items.php
Log Message:
MFH
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.54.2.2
retrieving revision 1.54.2.3
diff -u -d -r1.54.2.2 -r1.54.2.3
--- NEWS 3 Feb 2004 16:33:33 -0000 1.54.2.2
+++ NEWS 4 Feb 2004 19:12:25 -0000 1.54.2.3
@@ -1,6 +1,6 @@
# $Id$
-Version 0.5 ()
+Version 0.5 (February 4th, 2004)
------------------------------------
* RSS 1.0 feed supported (garvinhicking)
* Redirection after a comment has been added to prevent users refreshing a page and double-submitting. (garvinhicking)
Index: serendipity_sidebar_items.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_sidebar_items.php,v
retrieving revision 1.37.2.1
retrieving revision 1.37.2.2
diff -u -d -r1.37.2.1 -r1.37.2.2
--- serendipity_sidebar_items.php 3 Feb 2004 16:33:33 -0000 1.37.2.1
+++ serendipity_sidebar_items.php 4 Feb 2004 19:12:25 -0000 1.37.2.2
@@ -246,18 +246,18 @@
<?php
}
- if ($this->get_config('show_2.0') != 'false') {
+ if ($this->get_config('show_1.0') != 'false') {
?>
- <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=2.0"><img src="<?php echo $serendipity['serendipityHTTPPath']; ?>xml.gif" border="0" alt="XML" /></a>
- <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=2.0">RSS 2.0 feed</a>
+ <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=1.0"><img src="<?php echo $serendipity['serendipityHTTPPath']; ?>xml.gif" border="0" alt="XML" /></a>
+ <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=1.0">RSS 1.0 feed</a>
<br />
<?php
}
- if ($this->get_config('show_1.0') != 'false') {
+ if ($this->get_config('show_2.0') != 'false') {
?>
- <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=1.0"><img src="<?php echo $serendipity['serendipityHTTPPath']; ?>xml.gif" border="0" alt="XML" /></a>
- <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=1.0">RSS 1.0 feed</a>
+ <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=2.0"><img src="<?php echo $serendipity['serendipityHTTPPath']; ?>xml.gif" border="0" alt="XML" /></a>
+ <a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=2.0">RSS 2.0 feed</a>
<br />
<?php
}
|