Add 'whatlinkshere-filters'
[lhc/web/wiklou.git] / maintenance / removeUnusedAccounts.php
index 3cf46ee..26be130 100644 (file)
@@ -26,7 +26,7 @@ if( isset( $options['help'] ) ) {
 # Do an initial scan for inactive accounts and report the result
 echo( "Checking for unused user accounts...\n" );
 $del = array();
-$dbr =& wfGetDB( DB_SLAVE );
+$dbr = wfGetDB( DB_SLAVE );
 $res = $dbr->select( 'user', array( 'user_id', 'user_name' ), '', $fname );
 while( $row = $dbr->fetchObject( $res ) ) {
        # Check the account, but ignore it if it's the primary administrator
@@ -42,7 +42,7 @@ echo( "...found {$count}.\n" );
 # If required, go back and delete each marked account
 if( $count > 0 && isset( $options['delete'] ) ) {
        echo( "\nDeleting inactive accounts..." );
-       $dbw =& wfGetDB( DB_MASTER );
+       $dbw = wfGetDB( DB_MASTER );
        $dbw->delete( 'user', array( 'user_id' => $del ), $fname );
        echo( "done.\n" );
        # Update the site_stats.ss_users field
@@ -54,4 +54,4 @@ if( $count > 0 && isset( $options['delete'] ) ) {
 }
 echo( "\n" );
 
-?>
+