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

@@ 4909-4915 (lines=7) @@
4906
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4907
		$secrets = Jetpack::generate_secrets( 'register' );
4908
4909
		if (
4910
			empty( $secrets['secret_1'] ) ||
4911
			empty( $secrets['secret_2'] ) ||
4912
			empty( $secrets['exp'] )
4913
		) {
4914
			return new Jetpack_Error( 'missing_secrets' );
4915
		}
4916
4917
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4918