Plugin Directory

Changeset 3004033


Ignore:
Timestamp:
12/01/2023 03:41:30 AM (2 years ago)
Author:
brightedge
Message:

Added a fix to shortcode to support newer themes

Location:
brightedge-autopilot/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • brightedge-autopilot/trunk/be_ixf_php_wp.php

    r2957029 r3004033  
    44 * Plugin URI: https://www.brightedge.com/
    55 * Description: Enables BrightEdge Autopilot on your Wordpress site.
    6  * Version: 1.1.12
     6 * Version: 1.1.13
    77 * Author: BrightEdge
    88 * Author URI: https://www.brightedge.com/
  • brightedge-autopilot/trunk/readme.txt

    r2957029 r3004033  
    77Requires PHP: 5.5
    88Tested up to: 6.3
    9 Version: 1.1.12
     9Version: 1.1.13
    1010Copyright: BrightEdge Technologies, Inc.
    1111License: www.brightedge.com/infrastructure-product-terms
     
    2525
    2626== Changelog ==
     27 1.1.13 =
     28* Release date: Nov 29, 2023
     29
     30**Update**
     31
     32* Added a fix to shortcode to support newer themes
     33
    2734 1.1.12 =
    2835* Release date: Aug 18, 2023
  • brightedge-autopilot/trunk/src/View.php

    r2943291 r3004033  
    178178
    179179    public function ixfRenderBody1BlockShortcode(){
     180        ob_start();
    180181        if (isset($this->controller->ixf_data)){
    181182            echo html_entity_decode(wp_unslash($this->controller->ixf_data));
    182183        }
     184        return ob_get_clean();
    183185    }
    184186
  • brightedge-autopilot/trunk/src/constants.php

    r2957029 r3004033  
    55class BEIXFConstants{
    66    // wordpress plugin version
    7     const WP_VERSION = '<meta name="be:wp" content="1.1.12">';
     7    const WP_VERSION = '<meta name="be:wp" content="1.1.13">';
    88    // account id
    99    const ACCOUNT_ID = 'account_id';
Note: See TracChangeset for help on using the changeset viewer.