Code Duplication    Length = 4-4 lines in 2 locations

other/install.php 1 location

@@ 131-134 (lines=4) @@
128
		$incontext['skip'] = false;
129
130
		// Call the step and if it returns false that means pause!
131
		if (function_exists($step[2]) && $step[2]() === false)
132
			break;
133
		elseif (function_exists($step[2]))
134
			$incontext['current_step']++;
135
136
		// No warnings pass on.
137
		$incontext['warning'] = '';

other/upgrade.php 1 location

@@ 671-674 (lines=4) @@
668
		}
669
670
		// Call the step and if it returns false that means pause!
671
		if (function_exists($step[2]) && $step[2]() === false)
672
			break;
673
		elseif (function_exists($step[2]))
674
			$upcontext['current_step']++;
675
	}
676
	$upcontext['overall_percent'] += $step[3];
677
}