Code Duplication    Length = 4-5 lines in 2 locations

maintenance/checkImages.php 2 locations

@@ 64-67 (lines=4) @@
61
					continue;
62
				}
63
64
				if ( $size == 0 && $row->img_size != 0 ) {
65
					$this->output( "{$row->img_name}: truncated, was {$row->img_size}\n" );
66
					continue;
67
				}
68
69
				if ( $size != $row->img_size ) {
70
					$this->output( "{$row->img_name}: size mismatch DB={$row->img_size}, "
@@ 69-73 (lines=5) @@
66
					continue;
67
				}
68
69
				if ( $size != $row->img_size ) {
70
					$this->output( "{$row->img_name}: size mismatch DB={$row->img_size}, "
71
						. "actual={$size}\n" );
72
					continue;
73
				}
74
75
				$numGood++;
76
			}