Code Duplication    Length = 6-6 lines in 2 locations

src/wp-includes/functions.php 2 locations

@@ 4399-4404 (lines=6) @@
4396
		if ( 'GMT+' === substr( $a['city'], 0, 4 ) && 'GMT+' === substr( $b['city'], 0, 4 ) ) {
4397
			return -1 * ( strnatcasecmp( $a['city'], $b['city'] ) );
4398
		}
4399
		if ( 'UTC' === $a['city'] ) {
4400
			if ( 'GMT+' === substr( $b['city'], 0, 4 ) ) {
4401
				return 1;
4402
			}
4403
			return -1;
4404
		}
4405
		if ( 'UTC' === $b['city'] ) {
4406
			if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) {
4407
				return -1;
@@ 4405-4410 (lines=6) @@
4402
			}
4403
			return -1;
4404
		}
4405
		if ( 'UTC' === $b['city'] ) {
4406
			if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) {
4407
				return -1;
4408
			}
4409
			return 1;
4410
		}
4411
		return strnatcasecmp( $a['city'], $b['city'] );
4412
	}
4413
	if ( $a['t_continent'] == $b['t_continent'] ) {