Skip to content

Commit

Permalink
Merge pull request #1152 from live-composer/release_1_5_50
Browse files Browse the repository at this point in the history
release 1.5.50
  • Loading branch information
nitin-blueastral authored Nov 4, 2024
2 parents 5a659a2 + 9196afe commit d8a1d93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ds-live-composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://www.livecomposerplugin.com
* Description: Page builder for WordPress with drag and drop header/footer editing.
* Author: Live Composer Team
* Version: 1.5.49
* Version: 1.5.50
* Author URI: https://livecomposerplugin.com
* License: GPL3
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -41,7 +41,7 @@
* Constants
*/

define( 'DS_LIVE_COMPOSER_VER', '1.5.49' );
define( 'DS_LIVE_COMPOSER_VER', '1.5.50' );

define( 'DS_LIVE_COMPOSER_SHORTNAME', __( 'Live Composer', 'live-composer-page-builder' ) );
define( 'DS_LIVE_COMPOSER_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
4 changes: 2 additions & 2 deletions includes/class.module.php
Original file line number Diff line number Diff line change
Expand Up @@ -2774,7 +2774,7 @@ function module_after( $user_options ) {
}

// Sanitize User Option Values.
if ( $uid ) {
if ( $uid !==false) {
$option_satinitize_data = array(
'value' => $uid,
'id' => $id,
Expand Down Expand Up @@ -2808,7 +2808,7 @@ function module_after( $user_options ) {
$options_ids[] = $option['id'];

// Set the setting value.
if ( $uid ) {
if ( $uid !==false ) {
$option_value = $uid;
} else {
$option_value = '';
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: LiveComposer
Tags: page builder, landing page builder, frontend page builder, drag and drop page builder, website builder
Requires at least: 4.7
Tested up to: 6.6
Stable tag: 1.5.49
Stable tag: 1.5.50
License: GPLv3

Page builder for WordPress with drag and drop header/footer editing, responsive settings, and animations. Compatible with Gutenberg block editor.
Expand Down Expand Up @@ -203,6 +203,9 @@ If you're migrating from another page builder, compatibility for content transfe
* 🦊 [Check out our WooCommerce Page Builder Extension](https://livecomposerplugin.com/downloads/woocommerce-page-builder/?utm_source=wp-admin&utm_medium=changelog&utm_campaign=woo-integration)
* 👀 [We keep updating and improving our extensions pack](https://livecomposerplugin.com/downloads/extensions/?utm_source=wp-admin&utm_medium=changelog&utm_campaign=add-ons) ACF + CPT + MegaMenu + 9 more add-ons.

= 1.5.50 - Nov 5 2024 =
* Fixed minor issues related to Margin property in Module

= 1.5.49 - October 19 2024 =
* Fixed warnings and exception handling.

Expand Down

0 comments on commit d8a1d93

Please sign in to comment.