Code Duplication    Length = 3-3 lines in 2 locations

other/install.php 1 location

@@ 1965-1967 (lines=3) @@
1962
					<h2>', $txt['upgrade_progress'], '</h2>
1963
					<ul>';
1964
1965
	foreach ($incontext['steps'] as $num => $step)
1966
		echo '
1967
						<li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
1968
1969
	echo '
1970
					</ul>

other/upgrade.php 1 location

@@ 3575-3577 (lines=3) @@
3572
					<h2>', $txt['upgrade_progress'], '</h2>
3573
					<ul>';
3574
3575
	foreach ($upcontext['steps'] as $num => $step)
3576
		echo '
3577
						<li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
3578
3579
	echo '
3580
					</ul>