Code Duplication    Length = 2-2 lines in 2 locations

Sources/Subs-Editor.php 2 locations

@@ 2173-2174 (lines=2) @@
2170
		$force_refresh = false;
2171
2172
	// This can also force a fresh, although unlikely.
2173
	if (($thisVerification['show_visual'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['code'])) || ($thisVerification['number_questions'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['q'])))
2174
		$force_refresh = true;
2175
2176
	$verification_errors = array();
2177
	// Start with any testing.
@@ 2190-2191 (lines=2) @@
2187
		if ($thisVerification['empty_field'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field']))
2188
			fatal_lang_error('no_access', false);
2189
		// While we're here, did the user do something bad?
2190
		if ($thisVerification['empty_field'] && !empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field']) && !empty($_REQUEST[$_SESSION[$verificationOptions['id'] . '_vv']['empty_field']]))
2191
			$verification_errors[] = 'wrong_verification_answer';
2192
2193
		if ($thisVerification['can_recaptcha'])
2194
		{