Code Duplication    Length = 3-3 lines in 2 locations

other/install.php 1 location

@@ 1859-1861 (lines=3) @@
1856
						<h2>', $txt['upgrade_progress'], '</h2>
1857
						<ul>';
1858
1859
	foreach ($incontext['steps'] as $num => $step)
1860
		echo '
1861
							<li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
1862
1863
	echo '
1864
						</ul>

other/upgrade.php 1 location

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