From: Greg Sabino Mullane Date: Fri, 12 Jan 2007 19:30:12 +0000 (+0000) Subject: Add 2 new select-clause columns to groupby clause. X-Git-Tag: 1.31.0-rc.0~54451 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=13566d2a9ff36efea27fccd712090dc60787d1d3;p=lhc%2Fweb%2Fwiklou.git Add 2 new select-clause columns to groupby clause. --- diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index 2214576c4a..15292898a6 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -73,7 +73,7 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { $GROUPBY = " GROUP BY rc_cur_id,rc_namespace,rc_title, rc_user,rc_comment,rc_user_text,rc_timestamp,rc_minor, - rc_new, rc_id, rc_this_oldid, rc_last_oldid, rc_bot, rc_patrolled, rc_type + rc_new, rc_id, rc_this_oldid, rc_last_oldid, rc_bot, rc_patrolled, rc_type, rc_old_len, rc_new_len " . ($uid ? ",wl_user" : "") . " ORDER BY rc_timestamp DESC LIMIT {$limit}";