Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1249
Modified Files:
serendipity_functions.inc.php
Log Message:
To me, reverse order makes more sense, when you read from the top and down
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -d -r1.290 -r1.291
--- serendipity_functions.inc.php 14 Jun 2004 18:16:28 -0000 1.290
+++ serendipity_functions.inc.php 14 Jun 2004 18:22:57 -0000 1.291
@@ -3039,7 +3039,7 @@
<td colspan="6"><h2><?php echo $year; ?></h2></td>
</tr>
<?php
- for($y=1; $y<13; $y++) {
+ for($y=12; $y>0; $y--) {
if (isset($months[$y]) && $months[$y]) {
$time = mktime(0,0,0, $y+1, 0, $year);
?>
|