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

@@ 4820-4826 (lines=7) @@
4817
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4818
		$secrets = Jetpack::generate_secrets( 'register' );
4819
4820
		if (
4821
			empty( $secrets['secret_1'] ) ||
4822
			empty( $secrets['secret_2'] ) ||
4823
			empty( $secrets['exp'] )
4824
		) {
4825
			return new Jetpack_Error( 'missing_secrets' );
4826
		}
4827
4828
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4829