Changeset 3386499
- Timestamp:
- 10/29/2025 02:30:22 PM (5 months ago)
- Location:
- restricted-site-access
- Files:
-
- 6 edited
- 1 copied
-
tags/7.6.1 (copied) (copied from restricted-site-access/trunk)
-
tags/7.6.1/readme.txt (modified) (2 diffs)
-
tags/7.6.1/restricted_site_access.php (modified) (5 diffs)
-
tags/7.6.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/restricted_site_access.php (modified) (5 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
restricted-site-access/tags/7.6.1/readme.txt
r3385358 r3386499 4 4 Tags: privacy, restrict, limited, permissions, security 5 5 Tested up to: 6.8 6 Stable tag: 7.6. 06 Stable tag: 7.6.1 7 7 License: GPL-2.0-or-later 8 8 License URI: https://spdx.org/licenses/GPL-2.0-or-later.html … … 204 204 205 205 == Changelog == 206 207 = 7.6.1 - 2025-10-29 = 208 * **Fixed:** Ensure field data is set properly before we use it. Resolves a fatal error with Elementor (props [@ktorktor](https://github.com/ktorktor), [Vishal Patel](https://profiles.wordpress.org/bhaveshnariya/), [fatjester](https://profiles.wordpress.org/fatjester/), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#371](https://github.com/10up/restricted-site-access/pull/371)). 206 209 207 210 = 7.6.0 - 2025-10-27 = -
restricted-site-access/tags/7.6.1/restricted_site_access.php
r3385358 r3386499 4 4 * Plugin URI: https://10up.com/plugins/restricted-site-access-wordpress/ 5 5 * Description: <strong>Limit access your site</strong> to visitors who are logged in or accessing the site from a set of specific IP addresses. Send restricted visitors to the log in page, redirect them, or display a message or page. <strong>Powerful control over redirection</strong>, including <strong>SEO friendly redirect headers</strong>. Great solution for Extranets, publicly hosted Intranets, or parallel development sites. 6 * Version: 7.6. 06 * Version: 7.6.1 7 7 * Requires at least: 6.6 8 8 * Requires PHP: 7.4 … … 58 58 } 59 59 60 define( 'RSA_VERSION', '7.6. 0' );60 define( 'RSA_VERSION', '7.6.1' ); 61 61 62 62 /** … … 424 424 } 425 425 426 // Populate fields if they are not set. 427 if ( is_null( self::$fields ) || is_null( self::$always_visible_fields ) ) { 428 self::populate_fields_array(); 429 } 430 426 431 // Merge fields that should always be visible with the rest of the fields. 427 432 $all_fields = array_merge( self::$fields, self::$always_visible_fields ); … … 837 842 ! RSA_IS_NETWORK // Show on single non-network sites. 838 843 ) { 844 // Populate fields if they are not set. 845 if ( is_null( self::$fields ) ) { 846 self::populate_fields_array(); 847 } 848 839 849 foreach ( self::$fields as $field_name => $field_data ) { 840 850 add_settings_field( … … 857 867 // Add settings fields that should always be visible. 858 868 add_settings_section( 'restricted-site-access-always-visible', '', '__return_empty_string', self::$settings_page ); 869 870 // Populate fields if they are not set. 871 if ( is_null( self::$always_visible_fields ) ) { 872 self::populate_fields_array(); 873 } 874 859 875 foreach ( self::$always_visible_fields as $field_name => $field_data ) { 860 876 -
restricted-site-access/tags/7.6.1/vendor/composer/installed.php
r3385358 r3386499 2 2 'root' => array( 3 3 'name' => '10up/restricted-site-access', 4 'pretty_version' => '7.6. 0',5 'version' => '7.6. 0.0',6 'reference' => ' 25d475b49d2b09a142e2a834fd246ea5ff916f4a',4 'pretty_version' => '7.6.1', 5 'version' => '7.6.1.0', 6 'reference' => '3e65cb78522c547143d7c0167e301066ab92419e', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '10up/restricted-site-access' => array( 14 'pretty_version' => '7.6. 0',15 'version' => '7.6. 0.0',16 'reference' => ' 25d475b49d2b09a142e2a834fd246ea5ff916f4a',14 'pretty_version' => '7.6.1', 15 'version' => '7.6.1.0', 16 'reference' => '3e65cb78522c547143d7c0167e301066ab92419e', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
restricted-site-access/trunk/readme.txt
r3385358 r3386499 4 4 Tags: privacy, restrict, limited, permissions, security 5 5 Tested up to: 6.8 6 Stable tag: 7.6. 06 Stable tag: 7.6.1 7 7 License: GPL-2.0-or-later 8 8 License URI: https://spdx.org/licenses/GPL-2.0-or-later.html … … 204 204 205 205 == Changelog == 206 207 = 7.6.1 - 2025-10-29 = 208 * **Fixed:** Ensure field data is set properly before we use it. Resolves a fatal error with Elementor (props [@ktorktor](https://github.com/ktorktor), [Vishal Patel](https://profiles.wordpress.org/bhaveshnariya/), [fatjester](https://profiles.wordpress.org/fatjester/), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#371](https://github.com/10up/restricted-site-access/pull/371)). 206 209 207 210 = 7.6.0 - 2025-10-27 = -
restricted-site-access/trunk/restricted_site_access.php
r3385358 r3386499 4 4 * Plugin URI: https://10up.com/plugins/restricted-site-access-wordpress/ 5 5 * Description: <strong>Limit access your site</strong> to visitors who are logged in or accessing the site from a set of specific IP addresses. Send restricted visitors to the log in page, redirect them, or display a message or page. <strong>Powerful control over redirection</strong>, including <strong>SEO friendly redirect headers</strong>. Great solution for Extranets, publicly hosted Intranets, or parallel development sites. 6 * Version: 7.6. 06 * Version: 7.6.1 7 7 * Requires at least: 6.6 8 8 * Requires PHP: 7.4 … … 58 58 } 59 59 60 define( 'RSA_VERSION', '7.6. 0' );60 define( 'RSA_VERSION', '7.6.1' ); 61 61 62 62 /** … … 424 424 } 425 425 426 // Populate fields if they are not set. 427 if ( is_null( self::$fields ) || is_null( self::$always_visible_fields ) ) { 428 self::populate_fields_array(); 429 } 430 426 431 // Merge fields that should always be visible with the rest of the fields. 427 432 $all_fields = array_merge( self::$fields, self::$always_visible_fields ); … … 837 842 ! RSA_IS_NETWORK // Show on single non-network sites. 838 843 ) { 844 // Populate fields if they are not set. 845 if ( is_null( self::$fields ) ) { 846 self::populate_fields_array(); 847 } 848 839 849 foreach ( self::$fields as $field_name => $field_data ) { 840 850 add_settings_field( … … 857 867 // Add settings fields that should always be visible. 858 868 add_settings_section( 'restricted-site-access-always-visible', '', '__return_empty_string', self::$settings_page ); 869 870 // Populate fields if they are not set. 871 if ( is_null( self::$always_visible_fields ) ) { 872 self::populate_fields_array(); 873 } 874 859 875 foreach ( self::$always_visible_fields as $field_name => $field_data ) { 860 876 -
restricted-site-access/trunk/vendor/composer/installed.php
r3385358 r3386499 2 2 'root' => array( 3 3 'name' => '10up/restricted-site-access', 4 'pretty_version' => '7.6. 0',5 'version' => '7.6. 0.0',6 'reference' => ' 25d475b49d2b09a142e2a834fd246ea5ff916f4a',4 'pretty_version' => '7.6.1', 5 'version' => '7.6.1.0', 6 'reference' => '3e65cb78522c547143d7c0167e301066ab92419e', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '10up/restricted-site-access' => array( 14 'pretty_version' => '7.6. 0',15 'version' => '7.6. 0.0',16 'reference' => ' 25d475b49d2b09a142e2a834fd246ea5ff916f4a',14 'pretty_version' => '7.6.1', 15 'version' => '7.6.1.0', 16 'reference' => '3e65cb78522c547143d7c0167e301066ab92419e', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.