summaryrefslogtreecommitdiff
path: root/maintenance/cleanupCaps.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/cleanupCaps.php')
-rw-r--r--maintenance/cleanupCaps.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/maintenance/cleanupCaps.php b/maintenance/cleanupCaps.php
index 1a47ac4e..9e88c135 100644
--- a/maintenance/cleanupCaps.php
+++ b/maintenance/cleanupCaps.php
@@ -7,7 +7,7 @@
* --dry-run don't actually try moving them
*
* Copyright © 2005 Brion Vibber <brion@pobox.com>
- * http://www.mediawiki.org/
+ * https://www.mediawiki.org/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -71,6 +71,7 @@ class CapsCleanup extends TableCleanup {
$lower = $wgContLang->lcfirst( $row->page_title );
if ( $upper == $lower ) {
$this->output( "\"$display\" already lowercase.\n" );
+
return $this->progress( 0 );
}
@@ -78,6 +79,7 @@ class CapsCleanup extends TableCleanup {
$targetDisplay = $target->getPrefixedText();
if ( $target->exists() ) {
$this->output( "\"$display\" skipped; \"$targetDisplay\" already exists\n" );
+
return $this->progress( 0 );
}
@@ -98,6 +100,7 @@ class CapsCleanup extends TableCleanup {
}
}
}
+
return $this->progress( 0 );
}
}