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

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