Index: trunk/phase3/maintenance/cleanupTitles.php |
— | — | @@ -41,6 +41,11 @@ |
42 | 42 | } |
43 | 43 | |
44 | 44 | function processPage( $row ) { |
| 45 | + if( $row->page_namespace == NS_FILE ) { |
| 46 | + // use cleanupImages.php for file pages |
| 47 | + return $this->progress( 0 ); |
| 48 | + } |
| 49 | + |
45 | 50 | $current = Title::makeTitle( $row->page_namespace, $row->page_title ); |
46 | 51 | $display = $current->getPrefixedText(); |
47 | 52 | |