avoid a notice when nothing is found
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 22 Apr 2007 20:23:08 +0000 (20:23 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 22 Apr 2007 20:23:08 +0000 (20:23 +0000)
maintenance/purgeOldText.inc

index 8938cc0..c4732e9 100644 (file)
@@ -37,6 +37,7 @@ function PurgeRedundantText( $delete = false ) {
        echo( "Searching for inactive text records..." );
        $set = implode( ', ', $cur );
        $res = $dbw->query( "SELECT old_id FROM $tbl_txt WHERE old_id NOT IN ( $set )" );
+       $old = array();
        while( $row = $dbw->fetchObject( $res ) ) {
                $old[] = $row->old_id;
        }
@@ -59,4 +60,4 @@ function PurgeRedundantText( $delete = false ) {
        
 }
 
-?>
\ No newline at end of file
+?>