Fix typo in MigrateActors.php
authorBrad Jorsch <bjorsch@wikimedia.org>
Tue, 2 Apr 2019 13:49:00 +0000 (09:49 -0400)
committerBrad Jorsch <bjorsch@wikimedia.org>
Tue, 2 Apr 2019 13:49:00 +0000 (09:49 -0400)
Change-Id: Ic08210a8cd394f6ad49673a2d2e4800e6bcf2989

maintenance/includes/MigrateActors.php

index d9c2072..f5b3666 100644 (file)
@@ -478,14 +478,14 @@ class MigrateActors extends LoggedUpdateMaintenance {
                        [ 'LIMIT' => 1 ]
                );
                if ( $anyBad ) {
-                       $this->output( "... Deleting bogus rows due to T21552\n" );
+                       $this->output( "... Deleting bogus rows due to T215525\n" );
                        $dbw->delete(
                                'log_search',
                                [ 'ls_field' => 'target_author_actor', 'ls_value' => '' ],
                                __METHOD__
                        );
                        $ct = $dbw->affectedRows();
-                       $this->output( "... Deleted $ct bogus row(s) from T21552\n" );
+                       $this->output( "... Deleted $ct bogus row(s) from T215525\n" );
                        wfWaitForSlaves();
                }