(bug 17964) Don't make namespaceDupes fail if someone actually has an empty interwiki...
[lhc/web/wiklou.git] / maintenance / attachLatest.php
index d9d0d5d..8d680af 100644 (file)
@@ -21,7 +21,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
- * @addtogroup Maintenance
+ * @file
+ * @ingroup Maintenance
  */
 
 require_once( 'commandLine.inc' );
@@ -30,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 ),
@@ -69,4 +70,4 @@ if( !$fixit ) {
        echo "This was a dry run; rerun with --fix to update page_latest.\n";
 }
 
-?>
+