Code Duplication    Length = 3-3 lines in 2 locations

other/install.php 1 location

@@ 1891-1893 (lines=3) @@
1888
						<h2>', $txt['upgrade_progress'], '</h2>
1889
						<ul>';
1890
1891
	foreach ($incontext['steps'] as $num => $step)
1892
		echo '
1893
							<li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
1894
1895
	echo '
1896
						</ul>

other/upgrade.php 1 location

@@ 3398-3400 (lines=3) @@
3395
				<h2>', $txt['upgrade_progress'], '</h2>
3396
				<ul>';
3397
3398
	foreach ($upcontext['steps'] as $num => $step)
3399
		echo '
3400
						<li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
3401
3402
	echo '
3403
					</ul>