https://bugzilla.wikimedia.org/show_bug.cgi?id=63755

Krinkle <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
            Version|1.23-git                    |unspecified
   Target Milestone|---                         |1.24.0 release
           Severity|normal                      |minor

--- Comment #1 from Krinkle <[email protected]> ---
It keeps spreading if we don't remove it. Just found it in
RecentChange::parseFromRCType.

References in mediawiki-core:

includes/changes/ChangesList.php
435: if ( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] !=
RC_MOVE_OVER_REDIRECT ) {

includes/changes/EnhancedChangesList.php
146: // @todo remove handling for RC_MOVE and RC_MOVE_OVER_REDIRECT (bug 63755)
147: if ( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) {
554: if ( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) {

includes/changes/OldChangesList.php
57: if ( $rc->mAttribs['rc_type'] == RC_MOVE || $rc->mAttribs['rc_type'] ==
RC_MOVE_OVER_REDIRECT ) {

includes/changes/RCCacheEntryFactory.php
101: if ( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) {
174: $logTypes = array( RC_LOG, RC_MOVE, RC_MOVE_OVER_REDIRECT );
209: $logTypes = array( RC_NEW, RC_LOG, RC_MOVE, RC_MOVE_OVER_REDIRECT );
233: $logTypes = array( RC_LOG, RC_MOVE, RC_MOVE_OVER_REDIRECT );

includes/changes/RecentChange.php
150: case RC_MOVE: // obsolete
159: case RC_MOVE_OVER_REDIRECT: // obsolete

includes/Defines.php
180:define( 'RC_MOVE', 2 ); // obsolete
182:define( 'RC_MOVE_OVER_REDIRECT', 4 ); // obsolete

Of these, the following seem actually in runnable context (though hopefully
never triggered):

* ChangesList.php
* EnhancedChangesList.php
* OldChangesList.php

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to