Code Duplication    Length = 7-7 lines in 2 locations

class.jetpack-network.php 1 location

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

class.jetpack.php 1 location

@@ 4738-4744 (lines=7) @@
4735
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4736
		$secrets = Jetpack::generate_secrets( 'register' );
4737
4738
		if (
4739
			empty( $secrets['secret_1'] ) ||
4740
			empty( $secrets['secret_2'] ) ||
4741
			empty( $secrets['exp'] )
4742
		) {
4743
			return new Jetpack_Error( 'missing_secrets' );
4744
		}
4745
4746
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4747