Changeset 3041592
- Timestamp:
- 02/27/2024 12:24:51 AM (2 years ago)
- Location:
- boostbox/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
boostbox.php (modified) (2 diffs)
-
includes/class-boostbox.php (modified) (1 diff)
-
public/boostbox-popups.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boostbox/trunk/README.txt
r3035929 r3041592 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.4.3 7 Stable tag: 1.6. 07 Stable tag: 1.6.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 49 49 50 50 == 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` 51 54 52 55 = 1.6.0 = -
boostbox/trunk/boostbox.php
r3035929 r3041592 14 14 * Plugin URI: https://deviodigital.com/boostbox-lead-generation-plugin 15 15 * Description: Build popups for lead generation, content promotion and more using the core editor. 16 * Version: 1.6. 016 * Version: 1.6.1 17 17 * Author: Devio Digital 18 18 * Author URI: https://deviodigital.com … … 29 29 30 30 // Current plugin version. 31 define( 'BOOSTBOX_VERSION', '1.6. 0' );31 define( 'BOOSTBOX_VERSION', '1.6.1' ); 32 32 33 33 // Plugin basename. -
boostbox/trunk/includes/class-boostbox.php
r3035929 r3041592 78 78 public function __construct() { 79 79 $this->plugin_name = 'boostbox'; 80 $this->version = '1.6. 0';80 $this->version = '1.6.1'; 81 81 82 82 if ( defined( 'BOOSTBOX_VERSION' ) ) { -
boostbox/trunk/public/boostbox-popups.php
r3027699 r3041592 32 32 $popup_id = get_post_meta( get_the_ID(), 'boostbox_popup_selected', true ); 33 33 // Check for global popup. 34 if ( '' == $popup_id ) {34 if ( '' == $popup_id && '' !== $settings ) { 35 35 $popup_id = $settings['boostbox_global_popup']; 36 36 }
Note: See TracChangeset
for help on using the changeset viewer.