Plugin Directory

Changeset 3041592


Ignore:
Timestamp:
02/27/2024 12:24:51 AM (2 years ago)
Author:
deviodigital
Message:

Releasing BoostBox v1.6.1

Location:
boostbox/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • boostbox/trunk/README.txt

    r3035929 r3041592  
    55Requires at least: 3.0.1
    66Tested up to: 6.4.3
    7 Stable tag: 1.6.0
     7Stable tag: 1.6.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4949
    5050== Changelog ==
     51
     52= 1.6.1 =
     53*   Bugfix for fatal error when plugin is first installed and settings return empty in `public/boostbox-popups.php`
    5154
    5255= 1.6.0 =
  • boostbox/trunk/boostbox.php

    r3035929 r3041592  
    1414 * Plugin URI:        https://deviodigital.com/boostbox-lead-generation-plugin
    1515 * Description:       Build popups for lead generation, content promotion and more using the core editor.
    16  * Version:           1.6.0
     16 * Version:           1.6.1
    1717 * Author:            Devio Digital
    1818 * Author URI:        https://deviodigital.com
     
    2929
    3030// Current plugin version.
    31 define( 'BOOSTBOX_VERSION', '1.6.0' );
     31define( 'BOOSTBOX_VERSION', '1.6.1' );
    3232
    3333// Plugin basename.
  • boostbox/trunk/includes/class-boostbox.php

    r3035929 r3041592  
    7878    public function __construct() {
    7979        $this->plugin_name = 'boostbox';
    80         $this->version     = '1.6.0';
     80        $this->version     = '1.6.1';
    8181
    8282        if ( defined( 'BOOSTBOX_VERSION' ) ) {
  • boostbox/trunk/public/boostbox-popups.php

    r3027699 r3041592  
    3232    $popup_id = get_post_meta( get_the_ID(), 'boostbox_popup_selected', true );
    3333    // Check for global popup.
    34     if ( '' == $popup_id ) {
     34    if ( '' == $popup_id && '' !== $settings ) {
    3535        $popup_id = $settings['boostbox_global_popup'];
    3636    }
Note: See TracChangeset for help on using the changeset viewer.