diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 20:21:25 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 20:21:25 +0000 |
commit | d81f562b712f2387fa02290bf2ca86392ab356f2 (patch) | |
tree | d666cdefbe6ac320827a2c6cb473581b46e22c4c /maintenance/attachLatest.php | |
parent | 183851b06bd6c52f3cae5375f433da720d410447 (diff) |
Aktualisierung auf Version 1.8.1
Diffstat (limited to 'maintenance/attachLatest.php')
-rw-r--r-- | maintenance/attachLatest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/maintenance/attachLatest.php b/maintenance/attachLatest.php index 024a4fac..f4c11c01 100644 --- a/maintenance/attachLatest.php +++ b/maintenance/attachLatest.php @@ -47,17 +47,17 @@ while( $row = $dbw->fetchObject( $result ) ) { array( 'rev_page' => $pageId ), $fname ); if( !$latestTime ) { - echo "$wgDBname $pageId [[$name]] can't find latest rev time?!\n"; + echo wfWikiID()." $pageId [[$name]] can't find latest rev time?!\n"; continue; } $revision = Revision::loadFromTimestamp( $dbw, $title, $latestTime ); if( is_null( $revision ) ) { - echo "$wgDBname $pageId [[$name]] latest time $latestTime, can't find revision id\n"; + echo wfWikiID()." $pageId [[$name]] latest time $latestTime, can't find revision id\n"; continue; } $id = $revision->getId(); - echo "$wgDBname $pageId [[$name]] latest time $latestTime, rev id $id\n"; + echo wfWikiID()." $pageId [[$name]] latest time $latestTime, rev id $id\n"; if( $fixit ) { $article = new Article( $title ); $article->updateRevisionOn( $dbw, $revision ); |