Code Duplication    Length = 2-2 lines in 2 locations

Sources/Subs-Db-mysql.php 1 location

@@ 507-508 (lines=2) @@
504
	else
505
		$ret = @mysqli_query($connection, $db_string, MYSQLI_USE_RESULT);
506
507
	if ($ret === false && empty($db_values['db_error_skip']))
508
		$ret = smf_db_error($db_string, $connection);
509
510
	// Debugging.
511
	if (isset($db_show_debug) && $db_show_debug === true)

Sources/Subs-Db-postgresql.php 1 location

@@ 488-489 (lines=2) @@
485
486
	$db_last_result = @pg_query($connection, $db_string);
487
488
	if ($db_last_result === false && empty($db_values['db_error_skip']))
489
		$db_last_result = smf_db_error($db_string, $connection);
490
491
	// Debugging.
492
	if (isset($db_show_debug) && $db_show_debug === true)