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

@@ 4842-4848 (lines=7) @@
4839
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4840
		$secrets = Jetpack::generate_secrets( 'register' );
4841
4842
		if (
4843
			empty( $secrets['secret_1'] ) ||
4844
			empty( $secrets['secret_2'] ) ||
4845
			empty( $secrets['exp'] )
4846
		) {
4847
			return new Jetpack_Error( 'missing_secrets' );
4848
		}
4849
4850
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4851