| @@ 518-521 (lines=4) @@ | ||
| 515 | $json = false; |
|
| 516 | } |
|
| 517 | ||
| 518 | if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) ) { |
|
| 519 | restore_current_blog(); |
|
| 520 | return new Jetpack_Error( 'jetpack_secret', '', $code ); |
|
| 521 | } |
|
| 522 | ||
| 523 | if ( isset( $json->jetpack_public ) ) { |
|
| 524 | $jetpack_public = (int) $json->jetpack_public; |
|
| @@ 5465-5467 (lines=3) @@ | ||
| 5462 | return new Jetpack_Error( 'unknown_error', __( 'Unknown error registering your Jetpack site', 'jetpack' ), wp_remote_retrieve_response_code( $response ) ); |
|
| 5463 | } |
|
| 5464 | ||
| 5465 | if ( empty( $registration_details->jetpack_secret ) || ! is_string( $registration_details->jetpack_secret ) ) { |
|
| 5466 | return new Jetpack_Error( 'jetpack_secret', '', wp_remote_retrieve_response_code( $response ) ); |
|
| 5467 | } |
|
| 5468 | ||
| 5469 | if ( isset( $registration_details->jetpack_public ) ) { |
|
| 5470 | $jetpack_public = (int) $registration_details->jetpack_public; |
|