Code Duplication    Length = 4-4 lines in 2 locations

other/install.php 1 location

@@ 138-141 (lines=4) @@
135
		$incontext['skip'] = false;
136
137
		// Call the step and if it returns false that means pause!
138
		if (function_exists($step[2]) && $step[2]() === false)
139
			break;
140
		elseif (function_exists($step[2]))
141
			$incontext['current_step']++;
142
143
		// No warnings pass on.
144
		$incontext['warning'] = '';

other/upgrade.php 1 location

@@ 328-331 (lines=4) @@
325
		}
326
327
		// Call the step and if it returns false that means pause!
328
		if (function_exists($step[2]) && $step[2]() === false)
329
			break;
330
		elseif (function_exists($step[2]))
331
			$upcontext['current_step']++;
332
	}
333
	$upcontext['overall_percent'] += $step[3];
334
}