Skip to content

Commit

Permalink
Merge pull request #114 from brainstormforce/next-release
Browse files Browse the repository at this point in the history
Final PR version 1.5.8 to Next release
  • Loading branch information
sushmak02 authored Mar 21, 2024
2 parents 5c96e8f + 0cedf4b commit 006603f
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
**Donate link:** https://www.paypal.me/BrainstormForce
**Tags:** beaver builder, beaver builder free, beaver addons, beaver builder addon, beaver builder add ons, beaver builder lite, beaver builder modules, beaver builder addons, beaver builder extensions, beaver addon, beaver builder plugin, beaver builder wordpress
**Requires at least:** 4.6
**Tested up to:** 6.4.1
**Stable tag:** 1.5.7
**Tested up to:** 6.5
**Stable tag:** 1.5.8
**License:** GPLv2 or later
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -215,7 +215,8 @@ Yes it is! This plugin comes with .po and .mo files. It is already translated in

## Changelog ##

### 1.5.7.1 ###
### 1.5.8 ###
* Improvement: This update addressed a security bug. Props to Patchstack for privately reporting it to our team.
* Fixed: Info List - Undefined variable issue with PHP 8.

### 1.5.7 ###
Expand Down
4 changes: 2 additions & 2 deletions bb-ultimate-addon.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ultimate Addons for Beaver Builder - Lite
* Plugin URI: http://www.ultimatebeaver.com/
* Description: Ultimate Addons is a free extension for Beaver Builder that adds 10 modules, and works on top of any Beaver Builder Package. (Free, Standard, Pro & Agency) You can use it with on any WordPress theme.
* Version: 1.5.7
* Version: 1.5.8
* Author: Brainstorm Force
* Author URI: http://www.brainstormforce.com
* Text Domain: uabb
Expand All @@ -18,7 +18,7 @@

define( 'BB_ULTIMATE_ADDON_DIR', plugin_dir_path( __FILE__ ) );
define( 'BB_ULTIMATE_ADDON_URL', plugins_url( '/', __FILE__ ) );
define( 'BB_ULTIMATE_ADDON_LITE_VERSION', '1.5.7' );
define( 'BB_ULTIMATE_ADDON_LITE_VERSION', '1.5.8' );
define( 'BSF_REMOVE_UABB_FROM_REGISTRATION_LISTING', true );
define( 'BB_ULTIMATE_ADDON_FILE', trailingslashit( dirname( __FILE__ ) ) . 'bb-ultimate-addon.php' );// @codingStandardsIgnoreLine.
define( 'BB_ULTIMATE_ADDON_LITE', true );
Expand Down
2 changes: 1 addition & 1 deletion modules/advanced-icon/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
if ( ! empty( $icon->connections->link ) && empty( $icon->link ) && ! FLBuilderModel::is_builder_active() ) {
echo '';
} else {
echo '<a class="adv-icon-link adv-icon-' . esc_attr( $icon_count ) . '" href="' . $icon->link . '" target="' . esc_attr( $icon->link_target ) . '" ' . sanitize_text_field( BB_Ultimate_Addon_Helper::get_link_rel( $icon->link_target, $icon->link_nofollow, 0 ) ) . '>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '<a class="adv-icon-link adv-icon-' . esc_attr( $icon_count ) . '" href="' . esc_url( $icon->link ) . '" target="' . esc_attr( $icon->link_target ) . '" ' . sanitize_text_field( BB_Ultimate_Addon_Helper::get_link_rel( $icon->link_target, $icon->link_nofollow, 0 ) ) . '>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$imageicon_array = array(

/* General Section */
Expand Down
2 changes: 1 addition & 1 deletion modules/flip-box/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<?php
if ( '' != $settings->title_back ) {
?>
<<?php echo $settings->back_title_typography_tag_selection; ?> class="uabb-back-text-title"><?php echo $settings->title_back; ?></<?php echo $settings->back_title_typography_tag_selection; ?>>
<<?php echo esc_attr( $settings->back_title_typography_tag_selection ); ?> class="uabb-back-text-title"><?php echo esc_attr( $settings->title_back ); ?></<?php echo esc_attr( $settings->back_title_typography_tag_selection ); ?>>
<?php
}
if ( '' != $settings->desc_back ) {
Expand Down
2 changes: 1 addition & 1 deletion modules/image-separator/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
?>
<div class="uabb-module-content uabb-imgseparator-wrap">
<?php if ( 'yes' == $settings->enable_link ) : ?>
<a class="imgseparator-link" href="<?php echo $settings->link; ?>" target="<?php echo $settings->link_target; ?>"></a>
<a class="imgseparator-link" href="<?php echo esc_url( $settings->link ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>"></a>
<?php endif; ?>
<div class="uabb-image-separator uabb-image
<?php
Expand Down
4 changes: 2 additions & 2 deletions modules/info-table/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<?php echo '</' . $settings->sub_heading_tag_selection . '>'; ?>
<?php if ( 'cta' == $settings->it_link_type && 'design02' == $settings->box_design ) { ?>
<div class="info-table-button">
<a href="<?php echo $settings->it_link; ?>" target="<?php echo $settings->it_link_target; ?>" <?php UABB_Helper::get_link_rel( $settings->it_link_target, $link_nofollow, 1 ); ?>><?php echo $settings->button_text; ?></a>
<a href="<?php echo esc_url( $settings->it_link ); ?>" target="<?php echo esc_attr( $settings->it_link_target ); ?>" <?php UABB_Helper::get_link_rel( esc_attr( $settings->it_link_target ), $link_nofollow, 1 ); ?>><?php echo esc_html( $settings->button_text ); ?></a>
</div>
<?php } ?>
</div>
Expand Down Expand Up @@ -73,7 +73,7 @@
</div>
<?php if ( 'cta' == $settings->it_link_type && 'design02' != $settings->box_design ) { ?>
<div class="info-table-button">
<a href="<?php echo $settings->it_link; ?>" target="<?php echo $settings->it_link_target; ?>"><?php echo $settings->button_text; ?></a>
<a href="<?php echo esc_url( $settings->it_link ); ?>" target="<?php echo esc_attr( $settings->it_link_target ); ?>"><?php echo esc_html( $settings->button_text ); ?></a>
</div>
<?php } ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion modules/uabb-button/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<?php
}
?>
<a href="<?php echo $settings->link; ?>" target="<?php echo $settings->link_target; ?>" <?php UABB_Helper::get_link_rel( $settings->link_target, $link_nofollow, 1 ); ?>class="uabb-button uabb-creative-button <?php echo 'uabb-creative-' . $settings->style . '-btn'; ?> <?php echo $module->get_button_style(); ?> <?php echo ( isset( $settings->a_class ) ) ? $settings->a_class : ''; ?> " <?php echo ( isset( $settings->a_data ) ) ? $settings->a_data : ''; ?> role="button">
<a href="<?php echo esc_url( $settings->link ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>" <?php UABB_Helper::get_link_rel( esc_attr( $settings->link_target ), $link_nofollow, 1 ); ?>class="uabb-button uabb-creative-button <?php echo 'uabb-creative-' . esc_attr( $settings->style ) . '-btn'; ?> <?php echo esc_attr( $module->get_button_style() ); ?> <?php echo ( isset( $settings->a_class ) ) ? esc_attr( $settings->a_class ) : ''; ?> " <?php echo ( isset( $settings->a_data ) ) ? esc_attr( $settings->a_data ) : ''; ?> role="button">
<?php
if ( ! empty( $settings->icon ) && ( 'before' == $settings->icon_position || ! isset( $settings->icon_position ) ) ) :

Expand Down
2 changes: 1 addition & 1 deletion modules/uabb-heading/includes/frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<<?php echo $settings->tag; ?> class="uabb-heading">
<?php if ( ! empty( $settings->link ) ) : ?>
<a href="<?php echo $settings->link; ?>" title="<?php echo $settings->heading; ?>" target="<?php echo $settings->link_target; ?>" <?php BB_Ultimate_Addon_Helper::get_link_rel( $settings->link_target, $settings->link_nofollow, 1 ); ?>>
<a href="<?php echo esc_url( $settings->link ); ?>" title="<?php echo esc_attr( $settings->heading ); ?>" target="<?php echo esc_attr( $settings->link_target ); ?>" <?php BB_Ultimate_Addon_Helper::get_link_rel( esc_attr( $settings->link_target ), $settings->link_nofollow, 1 ); ?>>
<?php endif; ?>
<span class="uabb-heading-text"><?php echo $settings->heading; ?></span>
<?php if ( ! empty( $settings->link ) ) : ?>
Expand Down
7 changes: 4 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: brainstormforce
Donate link: https://www.paypal.me/BrainstormForce
Tags: beaver builder, beaver builder free, beaver addons, beaver builder addon, beaver builder add ons, beaver builder lite, beaver builder modules, beaver builder addons, beaver builder extensions, beaver addon, beaver builder plugin, beaver builder wordpress
Requires at least: 4.6
Tested up to: 6.4.1
Stable tag: 1.5.7
Tested up to: 6.5
Stable tag: 1.5.8
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -215,7 +215,8 @@ Yes it is! This plugin comes with .po and .mo files. It is already translated in

== Changelog ==

= 1.5.7.1 =
= 1.5.8 =
* Improvement: This update addressed a security bug. Props to Patchstack for privately reporting it to our team.
* Fixed: Info List - Undefined variable issue with PHP 8.

= 1.5.7 =
Expand Down

0 comments on commit 006603f

Please sign in to comment.