Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_karma
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21866/plugins/serendipity_event_karma
Modified Files:
serendipity_event_karma.php
Log Message:
* Fixed some wrong calculations in the statistics plugin, thanks
to David DeLauro! (garvinhicking)
Index: serendipity_event_karma.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_karma/serendipity_event_karma.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- serendipity_event_karma.php 25 Sep 2004 11:00:51 -0000 1.16
+++ serendipity_event_karma.php 13 Oct 2004 09:38:54 -0000 1.17
@@ -410,7 +410,7 @@
JOIN {$serendipity['dbPrefix']}entries
AS e
ON k.entryid = e.id
- GROUP BY e.id ORDER BY k.{$rows[0]} {$rows[1]} LIMIT {$addData['maxitems']}";
+ GROUP BY e.id, e.title, k.{$rows[0]} ORDER BY k.{$rows[0]} {$rows[1]} LIMIT {$addData['maxitems']}";
$sql_rows = serendipity_db_query($q);
?>
|