Index: branches/REL1_18/phase3/includes/Title.php |
— | — | @@ -3283,9 +3283,6 @@ |
3284 | 3284 | $oldid = $this->getArticleID(); |
3285 | 3285 | $latest = $this->getLatestRevID(); |
3286 | 3286 | |
3287 | | - $oldns = $this->getNamespace(); |
3288 | | - $olddbk = $this->getDBkey(); |
3289 | | - |
3290 | 3287 | $dbw = wfGetDB( DB_MASTER ); |
3291 | 3288 | |
3292 | 3289 | if ( $moveOverRedirect ) { |
— | — | @@ -3370,17 +3367,6 @@ |
3371 | 3368 | __METHOD__ ); |
3372 | 3369 | $redirectSuppressed = false; |
3373 | 3370 | } else { |
3374 | | - // Get rid of old new page entries in Special:NewPages and RC. |
3375 | | - // Needs to be before $this->resetArticleID( 0 ). |
3376 | | - $dbw->delete( 'recentchanges', array( |
3377 | | - 'rc_timestamp' => $dbw->timestamp( $this->getEarliestRevTime() ), |
3378 | | - 'rc_namespace' => $oldns, |
3379 | | - 'rc_title' => $olddbk, |
3380 | | - 'rc_new' => 1 |
3381 | | - ), |
3382 | | - __METHOD__ |
3383 | | - ); |
3384 | | - |
3385 | 3371 | $this->resetArticleID( 0 ); |
3386 | 3372 | $redirectSuppressed = true; |
3387 | 3373 | } |
Property changes on: branches/REL1_18/phase3/includes/Title.php |
___________________________________________________________________ |
Modified: svn:mergeinfo |
3388 | 3374 | Merged /trunk/phase3/includes/Title.php:r93986 |