Plugin Directory

Changeset 3352253


Ignore:
Timestamp:
08/28/2025 07:55:17 PM (6 months ago)
Author:
jhorowitz
Message:

Fix undefined variable in cvdb-et-builder-element.class.php.

Location:
content-visibility-for-divi-builder/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • content-visibility-for-divi-builder/trunk/content-visibility-for-divi-builder.php

    r3351612 r3352253  
    88 * Plugin Name:       Content Visibility for Divi Builder
    99 * Description:       Allows Sections and Modules to be displayed/hidden based on the outcome of a PHP boolean expression.
    10  * Version:           4.00
     10 * Version:           4.01
    1111 * Author:            AoD Technologies LLC
    1212 * Author URI:        http://www.aod-tech.com/
  • content-visibility-for-divi-builder/trunk/includes/cvdb-et-builder-element.class.php

    r3351612 r3352253  
    9595        }
    9696
    97         $visibility = ContentVisibilityForDiviBuilder::evaluate_visibility_expression( str_replace( array( '%22', '%5D' ), array( '"', ']' ), $atts['cvdb_content_visibility_check'] ), 'shortcode', $et_pb_element );
     97        $visibility = ContentVisibilityForDiviBuilder::evaluate_visibility_expression( str_replace( array( '%22', '%5D' ), array( '"', ']' ), $atts['cvdb_content_visibility_check'] ), 'shortcode', $this->wrapped_element );
    9898
    9999        if ( !$visibility ) {
  • content-visibility-for-divi-builder/trunk/includes/plugin.class.php

    r3351612 r3352253  
    2424
    2525    public static function get_version() {
    26         return '4.00';
     26        return '4.01';
    2727    }
    2828
  • content-visibility-for-divi-builder/trunk/readme.txt

    r3351612 r3352253  
    66Tested up to: 6.8.2
    77Requires PHP: 7.0
    8 Stable tag: 4.00
     8Stable tag: 4.01
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6666
    6767== Changelog ==
     68= 4.01 =
     69* Fix undefined variable in cvdb-et-builder-element.class.php. Thanks to @kindred for the quick bug report!
     70
    6871= 4.00 =
    6972* Refactor the code for performance and maintainability.
Note: See TracChangeset for help on using the changeset viewer.