Code Duplication    Length = 3-3 lines in 2 locations

other/install.php 1 location

@@ 1935-1937 (lines=3) @@
1932
						<h2>', $txt['upgrade_progress'], '</h2>
1933
						<ul>';
1934
1935
	foreach ($incontext['steps'] as $num => $step)
1936
		echo '
1937
							<li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
1938
1939
	echo '
1940
						</ul>

other/upgrade.php 1 location

@@ 3407-3409 (lines=3) @@
3404
				<h2>', $txt['upgrade_progress'], '</h2>
3405
				<ul>';
3406
3407
	foreach ($upcontext['steps'] as $num => $step)
3408
		echo '
3409
						<li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
3410
3411
	echo '
3412
					</ul>