Code Duplication    Length = 4-4 lines in 2 locations

other/install.php 1 location

@@ 118-121 (lines=4) @@
115
		$incontext['skip'] = false;
116
117
		// Call the step and if it returns false that means pause!
118
		if (function_exists($step[2]) && $step[2]() === false)
119
			break;
120
		elseif (function_exists($step[2]))
121
			$incontext['current_step']++;
122
123
		// No warnings pass on.
124
		$incontext['warning'] = '';

other/upgrade.php 1 location

@@ 275-278 (lines=4) @@
272
		}
273
274
		// Call the step and if it returns false that means pause!
275
		if (function_exists($step[2]) && $step[2]() === false)
276
			break;
277
		elseif (function_exists($step[2]))
278
			$upcontext['current_step']++;
279
	}
280
	$upcontext['overall_percent'] += $step[3];
281
}