No point in fetching the result in Database::unlock() if we're not using it anyway.
[lhc/web/wiklou.git] / maintenance / attachLatest.php
index 024a4fa..8d680af 100644 (file)
@@ -21,8 +21,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
- * @package MediaWiki
- * @subpackage Maintenance
+ * @file
+ * @ingroup Maintenance
  */
 
 require_once( 'commandLine.inc' );
@@ -31,7 +31,7 @@ $fixit = isset( $options['fix'] );
 $fname = 'attachLatest';
 
 echo "Looking for pages with page_latest set to 0...\n";
-$dbw =& wfGetDB( DB_MASTER );
+$dbw = wfGetDB( DB_MASTER );
 $result = $dbw->select( 'page',
        array( 'page_id', 'page_namespace', 'page_title' ),
        array( 'page_latest' => 0 ),
@@ -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 );
@@ -70,4 +70,4 @@ if( !$fixit ) {
        echo "This was a dry run; rerun with --fix to update page_latest.\n";
 }
 
-?>
+