X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FpopulateRevisionSha1.php;h=fb97e910f8e01c029cb016e611eccf9b10c1b862;hb=52f95595e05e489403f06e287fb9970bcd40c82d;hp=095c26693b2e4204a89bfa5f4b4a4a7210a645df;hpb=ae69acacf567077b3f49d1fe6c3f3770e72a9093;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/populateRevisionSha1.php b/maintenance/populateRevisionSha1.php index 095c26693b..fb97e910f8 100644 --- a/maintenance/populateRevisionSha1.php +++ b/maintenance/populateRevisionSha1.php @@ -156,10 +156,10 @@ class PopulateRevisionSha1 extends LoggedUpdateMaintenance { } catch ( Exception $e ) { $this->output( "Data of revision with {$idCol}={$row->$idCol} unavailable!\n" ); - return false; // bug 22624? + return false; // T24624? } if ( !is_string( $text ) ) { - # This should not happen, but sometimes does (bug 20757) + # This should not happen, but sometimes does (T22757) $this->output( "Data of revision with {$idCol}={$row->$idCol} unavailable!\n" ); return false; @@ -185,11 +185,11 @@ class PopulateRevisionSha1 extends LoggedUpdateMaintenance { } catch ( Exception $e ) { $this->output( "Text of revision with timestamp {$row->ar_timestamp} unavailable!\n" ); - return false; // bug 22624? + return false; // T24624? } $text = $rev->getSerializedData(); if ( !is_string( $text ) ) { - # This should not happen, but sometimes does (bug 20757) + # This should not happen, but sometimes does (T22757) $this->output( "Data of revision with timestamp {$row->ar_timestamp} unavailable!\n" ); return false;