Code Duplication    Length = 3-3 lines in 2 locations

other/install.php 1 location

@@ 1842-1844 (lines=3) @@
1839
						<h2>', $txt['upgrade_progress'], '</h2>
1840
						<ul>';
1841
1842
	foreach ($incontext['steps'] as $num => $step)
1843
		echo '
1844
							<li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
1845
1846
	echo '
1847
						</ul>

other/upgrade.php 1 location

@@ 3354-3356 (lines=3) @@
3351
				<h2>', $txt['upgrade_progress'], '</h2>
3352
				<ul>';
3353
3354
	foreach ($upcontext['steps'] as $num => $step)
3355
		echo '
3356
						<li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>';
3357
3358
	echo '
3359
					</ul>