Code Duplication    Length = 17-17 lines in 2 locations

other/upgrade.php 2 locations

@@ 5646-5662 (lines=17) @@
5643
				<td width="20%" align="center"><strong>Changes Required</strong></td>
5644
			</tr>';
5645
5646
		foreach ($upcontext['languages'] as $language)
5647
		{
5648
			echo '
5649
				<tr style="background-color: #cccccc;">
5650
					<td width="80%">
5651
						&quot;', $language['name'], '&quot; Language Pack
5652
						<div class="smalltext">(';
5653
5654
			foreach ($language['files'] as $k => $file)
5655
				echo $file['name'], $k + 1 != count($language['files']) ? ', ' : ')';
5656
5657
			echo '
5658
						</div>
5659
					</td>
5660
					<td width="20%" align="center">', $language['edit_count'] == 0 ? 1 : $language['edit_count'], '</td>
5661
				</tr>';
5662
		}
5663
5664
		foreach ($upcontext['themes'] as $theme)
5665
		{
@@ 5664-5680 (lines=17) @@
5661
				</tr>';
5662
		}
5663
5664
		foreach ($upcontext['themes'] as $theme)
5665
		{
5666
			echo '
5667
				<tr style="background-color: #CCCCCC;">
5668
					<td width="80%">
5669
						&quot;', $theme['name'], '&quot; Theme
5670
						<div class="smalltext">(';
5671
5672
			foreach ($theme['files'] as $k => $file)
5673
				echo $file['name'], $k + 1 != count($theme['files']) ? ', ' : ')';
5674
5675
			echo '
5676
						</div>
5677
					</td>
5678
					<td width="20%" align="center">', $theme['edit_count'] == 0 ? 1 : $theme['edit_count'], '</td>
5679
				</tr>';
5680
		}
5681
5682
		echo '
5683
		</table>';