From b06487b707b3294277cd122bd6a1a8ad10b7bb20 Mon Sep 17 00:00:00 2001 From: bindlegirl Date: Wed, 17 Jan 2024 01:32:32 +0000 Subject: [PATCH] IDC: add ip_requester option (#34753) Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/7549706522 --- CHANGELOG.md | 3 +++ legacy/class-jetpack-options.php | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff6b3a7..f1a563c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is an alpha version! The changes listed here are not final. +### Added +- Adding support for IDC when site URL is an IP address. + ### Changed - Adjust 'get_site_id()' method to return null if there's no blog ID. diff --git a/legacy/class-jetpack-options.php b/legacy/class-jetpack-options.php index f02e95b..53059ae 100644 --- a/legacy/class-jetpack-options.php +++ b/legacy/class-jetpack-options.php @@ -129,6 +129,7 @@ public static function get_option_names( $type = 'compact' ) { 'dismissed_backup_review_restore', // (bool) Determines if the component review request is dismissed for successful restore requests. 'dismissed_backup_review_backups', // (bool) Determines if the component review request is dismissed for successful backup requests. 'identity_crisis_url_secret', // (array) The IDC URL secret and its expiration date. + 'identity_crisis_ip_requester', // (array) The IDC IP address and its expiration date. 'dismissed_welcome_banner', // (bool) Determines if the welcome banner has been dismissed or not. ); }