Code Duplication    Length = 7-7 lines in 2 locations

class.jetpack.php 1 location

@@ 5022-5028 (lines=7) @@
5019
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
5020
		$secrets = Jetpack::generate_secrets( 'register' );
5021
5022
		if (
5023
			empty( $secrets['secret_1'] ) ||
5024
			empty( $secrets['secret_2'] ) ||
5025
			empty( $secrets['exp'] )
5026
		) {
5027
			return new Jetpack_Error( 'missing_secrets' );
5028
		}
5029
5030
		// better to try (and fail) to set a higher timeout than this system
5031
		// supports than to have register fail for more users than it should

class.jetpack-network.php 1 location

@@ 430-436 (lines=7) @@
427
		// Save the secrets in the subsite so when the wpcom server does a pingback it
428
		// will be able to validate the connection
429
		$secrets = $jp->generate_secrets( 'register' );
430
		if (
431
			empty( $secrets['secret_1'] ) ||
432
			empty( $secrets['secret_2']  ) ||
433
			empty( $secrets['exp'] )
434
		) {
435
			return new Jetpack_Error( 'missing_secrets' );
436
		}
437
438
		// Gra info for gmt offset
439
		$gmt_offset = get_option( 'gmt_offset' );