Plugin Directory

Changeset 3386499


Ignore:
Timestamp:
10/29/2025 02:30:22 PM (5 months ago)
Author:
10up
Message:

Update to version 7.6.1 from GitHub

Location:
restricted-site-access
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • restricted-site-access/tags/7.6.1/readme.txt

    r3385358 r3386499  
    44Tags:              privacy, restrict, limited, permissions, security
    55Tested up to:      6.8
    6 Stable tag:        7.6.0
     6Stable tag:        7.6.1
    77License:           GPL-2.0-or-later
    88License URI:       https://spdx.org/licenses/GPL-2.0-or-later.html
     
    204204
    205205== 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)).
    206209
    207210= 7.6.0 - 2025-10-27 =
  • restricted-site-access/tags/7.6.1/restricted_site_access.php

    r3385358 r3386499  
    44 * Plugin URI:        https://10up.com/plugins/restricted-site-access-wordpress/
    55 * 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.0
     6 * Version:           7.6.1
    77 * Requires at least: 6.6
    88 * Requires PHP:      7.4
     
    5858}
    5959
    60 define( 'RSA_VERSION', '7.6.0' );
     60define( 'RSA_VERSION', '7.6.1' );
    6161
    6262/**
     
    424424        }
    425425
     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
    426431        // Merge fields that should always be visible with the rest of the fields.
    427432        $all_fields = array_merge( self::$fields, self::$always_visible_fields );
     
    837842            ! RSA_IS_NETWORK // Show on single non-network sites.
    838843        ) {
     844            // Populate fields if they are not set.
     845            if ( is_null( self::$fields ) ) {
     846                self::populate_fields_array();
     847            }
     848
    839849            foreach ( self::$fields as $field_name => $field_data ) {
    840850                add_settings_field(
     
    857867        // Add settings fields that should always be visible.
    858868        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
    859875        foreach ( self::$always_visible_fields as $field_name => $field_data ) {
    860876
  • restricted-site-access/tags/7.6.1/vendor/composer/installed.php

    r3385358 r3386499  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • restricted-site-access/trunk/readme.txt

    r3385358 r3386499  
    44Tags:              privacy, restrict, limited, permissions, security
    55Tested up to:      6.8
    6 Stable tag:        7.6.0
     6Stable tag:        7.6.1
    77License:           GPL-2.0-or-later
    88License URI:       https://spdx.org/licenses/GPL-2.0-or-later.html
     
    204204
    205205== 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)).
    206209
    207210= 7.6.0 - 2025-10-27 =
  • restricted-site-access/trunk/restricted_site_access.php

    r3385358 r3386499  
    44 * Plugin URI:        https://10up.com/plugins/restricted-site-access-wordpress/
    55 * 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.0
     6 * Version:           7.6.1
    77 * Requires at least: 6.6
    88 * Requires PHP:      7.4
     
    5858}
    5959
    60 define( 'RSA_VERSION', '7.6.0' );
     60define( 'RSA_VERSION', '7.6.1' );
    6161
    6262/**
     
    424424        }
    425425
     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
    426431        // Merge fields that should always be visible with the rest of the fields.
    427432        $all_fields = array_merge( self::$fields, self::$always_visible_fields );
     
    837842            ! RSA_IS_NETWORK // Show on single non-network sites.
    838843        ) {
     844            // Populate fields if they are not set.
     845            if ( is_null( self::$fields ) ) {
     846                self::populate_fields_array();
     847            }
     848
    839849            foreach ( self::$fields as $field_name => $field_data ) {
    840850                add_settings_field(
     
    857867        // Add settings fields that should always be visible.
    858868        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
    859875        foreach ( self::$always_visible_fields as $field_name => $field_data ) {
    860876
  • restricted-site-access/trunk/vendor/composer/installed.php

    r3385358 r3386499  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.