Code Duplication    Length = 2-2 lines in 2 locations

Sources/Subs-Db-mysql.php 1 location

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

Sources/Subs-Db-postgresql.php 1 location

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