diff options
Diffstat (limited to 'maintenance/deleteBatch.php')
-rw-r--r-- | maintenance/deleteBatch.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/maintenance/deleteBatch.php b/maintenance/deleteBatch.php index 56fe13a4..936a52b8 100644 --- a/maintenance/deleteBatch.php +++ b/maintenance/deleteBatch.php @@ -1,6 +1,6 @@ <?php /** - * Deletes a batch of pages + * Deletes a batch of pages. * Usage: php deleteBatch.php [-u <user>] [-r <reason>] [-i <interval>] [listfile] * where * [listfile] is a file where each line contains the title of a page to be @@ -24,11 +24,17 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * + * @file * @ingroup Maintenance */ -require_once( dirname( __FILE__ ) . '/Maintenance.php' ); +require_once( __DIR__ . '/Maintenance.php' ); +/** + * Maintenance script to delete a batch of pages. + * + * @ingroup Maintenance + */ class DeleteBatch extends Maintenance { public function __construct() { @@ -89,7 +95,7 @@ class DeleteBatch extends Maintenance { } $this->output( $title->getPrefixedText() ); - $dbw->begin(); + $dbw->begin( __METHOD__ ); if ( $title->getNamespace() == NS_FILE ) { $img = wfFindFile( $title ); if ( $img && $img->isLocal() && !$img->delete( $reason ) ) { @@ -99,7 +105,7 @@ class DeleteBatch extends Maintenance { $page = WikiPage::factory( $title ); $error = ''; $success = $page->doDeleteArticle( $reason, false, 0, false, $error, $user ); - $dbw->commit(); + $dbw->commit( __METHOD__ ); if ( $success ) { $this->output( " Deleted!\n" ); } else { |