Code Duplication    Length = 3-3 lines in 2 locations

Sources/Subs-Db-mysql.php 1 location

@@ 316-318 (lines=3) @@
313
				smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
314
		break;
315
316
		default:
317
			smf_db_error_backtrace('Undefined type used in the database query. (' . $matches[1] . ':' . $matches[2] . ')', '', false, __FILE__, __LINE__);
318
		break;
319
	}
320
}
321

Sources/Subs-Db-postgresql.php 1 location

@@ 274-276 (lines=3) @@
271
				smf_db_error_backtrace('Wrong value type sent to the database. Array of IPv4 or IPv6 expected. (' . $matches[2] . ')', '', E_USER_ERROR, __FILE__, __LINE__);
272
		break;
273
274
		default:
275
			smf_db_error_backtrace('Undefined type used in the database query. (' . $matches[1] . ':' . $matches[2] . ')', '', false, __FILE__, __LINE__);
276
		break;
277
	}
278
}
279