Code Duplication    Length = 7-7 lines in 2 locations

class.jetpack.php 1 location

@@ 5029-5035 (lines=7) @@
5026
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
5027
		$secrets = Jetpack::generate_secrets( 'register' );
5028
5029
		if (
5030
			empty( $secrets['secret_1'] ) ||
5031
			empty( $secrets['secret_2'] ) ||
5032
			empty( $secrets['exp'] )
5033
		) {
5034
			return new Jetpack_Error( 'missing_secrets' );
5035
		}
5036
5037
		// better to try (and fail) to set a higher timeout than this system
5038
		// supports than to have register fail for more users than it should

class.jetpack-network.php 1 location

@@ 427-433 (lines=7) @@
424
		// Save the secrets in the subsite so when the wpcom server does a pingback it
425
		// will be able to validate the connection
426
		$secrets = $jp->generate_secrets( 'register' );
427
		if (
428
			empty( $secrets['secret_1'] ) ||
429
			empty( $secrets['secret_2']  ) ||
430
			empty( $secrets['exp'] )
431
		) {
432
			return new Jetpack_Error( 'missing_secrets' );
433
		}
434
435
		// Gra info for gmt offset
436
		$gmt_offset = get_option( 'gmt_offset' );