Page MenuHomePhabricator

GROUP BY clause missing columns in SpecialRecentchangeslinked.php
Closed, ResolvedPublic

Description

Author: cja987

Description:
in SpecialRecentchangeslinked.php, the wfSpecialRecentchangeslinked function
needs two columns added to the $GROUPBY around line 78, namely rc_old_len and
rc_new_len, so it should read like this:

$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_old_len, rc_new_len

(I'll send actual diffs in the future if needed)

The find for this one goes to Fyren on MediaWiki-General


Version: 1.9.x
Severity: normal

Details

Reference
bz8256

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:30 PM
bzimport set Reference to bz8256.
bzimport added a subscriber: Unknown Object (MLST).

cja987 wrote:

was fixed soon after reporting