Changeset 3382784
- Timestamp:
- 10/22/2025 04:21:21 PM (8 weeks ago)
- Location:
- ithemes-sync
- Files:
-
- 8 edited
- 1 copied
-
tags/3.2.8 (copied) (copied from ithemes-sync/trunk)
-
tags/3.2.8/history.txt (modified) (1 diff)
-
tags/3.2.8/init.php (modified) (1 diff)
-
tags/3.2.8/load.php (modified) (1 diff)
-
tags/3.2.8/readme.txt (modified) (2 diffs)
-
trunk/history.txt (modified) (1 diff)
-
trunk/init.php (modified) (1 diff)
-
trunk/load.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ithemes-sync/tags/3.2.8/history.txt
r3331711 r3382784 290 290 3.2.7 - 2025-07-21 - Lisa Canini 291 291 Tweak: Update SolidWP logo 292 3.2.8 - 2025-10-21 - Lisa Canini 293 New: Add filter to return Central IPs. -
ithemes-sync/tags/3.2.8/init.php
r3331711 r3382784 5 5 * Description: Maximize and amplify your admin with remote, multi-site management. One centralized dashboard to save time. 6 6 * Author: SolidWP 7 * Version: 3.2. 77 * Version: 3.2.8 8 8 * Requires at least: 6.4 9 9 * Requires PHP: 7.0 -
ithemes-sync/tags/3.2.8/load.php
r3312793 r3382784 129 129 130 130 /** 131 * Whitelist the Central Server IP addresses in Solid Security to prevent 132 * Central from being blacklisted by a customer on their own site 133 * 134 * @param array<int,string> $white_ips The IPs to filter. 135 * 136 * @return array<int,string> The filtered Solid Security whitelisted IPs. 137 */ 138 function ithemes_sync_itsec_white_ips( array $white_ips ): array { 139 $white_ips[] = '69.167.144.237'; 140 $white_ips[] = '54.159.83.156'; 141 return $white_ips; 142 } 143 add_filter( 'itsec_white_ips', 'ithemes_sync_itsec_white_ips' ); 131 * Trust the Central Server IP addresses in Solid Security to allow 132 * Central to perform requests to the customer's site 133 * 134 * @param array<int,string> $trusted_ips The IPs to filter. 135 * 136 * @return array<int,string> The filtered Solid Security trusted IPs. 137 */ 138 function solid_central_solid_security_trusted_ips( array $trusted_ips ): array { 139 $trusted_ips[] = '207.246.254.118'; 140 $trusted_ips[] = '207.246.255.233'; 141 $trusted_ips[] = '207.246.255.133'; 142 return $trusted_ips; 143 } 144 add_filter( 'solid_security_trusted_ips', 'solid_central_solid_security_trusted_ips' ); 144 145 145 146 /** -
ithemes-sync/tags/3.2.8/readme.txt
r3331711 r3382784 5 5 Requires PHP: 7.0 6 6 Tested up to: 6.8 7 Stable tag: 3.2. 77 Stable tag: 3.2.8 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html … … 131 131 == Changelog == 132 132 133 = 3.2.8 = 134 * New: Add filter to return Central IPs. 135 133 136 = 3.2.7 = 134 137 * Tweak: Update SolidWP logo -
ithemes-sync/trunk/history.txt
r3331711 r3382784 290 290 3.2.7 - 2025-07-21 - Lisa Canini 291 291 Tweak: Update SolidWP logo 292 3.2.8 - 2025-10-21 - Lisa Canini 293 New: Add filter to return Central IPs. -
ithemes-sync/trunk/init.php
r3331711 r3382784 5 5 * Description: Maximize and amplify your admin with remote, multi-site management. One centralized dashboard to save time. 6 6 * Author: SolidWP 7 * Version: 3.2. 77 * Version: 3.2.8 8 8 * Requires at least: 6.4 9 9 * Requires PHP: 7.0 -
ithemes-sync/trunk/load.php
r3312793 r3382784 129 129 130 130 /** 131 * Whitelist the Central Server IP addresses in Solid Security to prevent 132 * Central from being blacklisted by a customer on their own site 133 * 134 * @param array<int,string> $white_ips The IPs to filter. 135 * 136 * @return array<int,string> The filtered Solid Security whitelisted IPs. 137 */ 138 function ithemes_sync_itsec_white_ips( array $white_ips ): array { 139 $white_ips[] = '69.167.144.237'; 140 $white_ips[] = '54.159.83.156'; 141 return $white_ips; 142 } 143 add_filter( 'itsec_white_ips', 'ithemes_sync_itsec_white_ips' ); 131 * Trust the Central Server IP addresses in Solid Security to allow 132 * Central to perform requests to the customer's site 133 * 134 * @param array<int,string> $trusted_ips The IPs to filter. 135 * 136 * @return array<int,string> The filtered Solid Security trusted IPs. 137 */ 138 function solid_central_solid_security_trusted_ips( array $trusted_ips ): array { 139 $trusted_ips[] = '207.246.254.118'; 140 $trusted_ips[] = '207.246.255.233'; 141 $trusted_ips[] = '207.246.255.133'; 142 return $trusted_ips; 143 } 144 add_filter( 'solid_security_trusted_ips', 'solid_central_solid_security_trusted_ips' ); 144 145 145 146 /** -
ithemes-sync/trunk/readme.txt
r3331711 r3382784 5 5 Requires PHP: 7.0 6 6 Tested up to: 6.8 7 Stable tag: 3.2. 77 Stable tag: 3.2.8 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/quick-guide-gplv3.html … … 131 131 == Changelog == 132 132 133 = 3.2.8 = 134 * New: Add filter to return Central IPs. 135 133 136 = 3.2.7 = 134 137 * Tweak: Update SolidWP logo
Note: See TracChangeset
for help on using the changeset viewer.