Skip to content

Commit

Permalink
Merge pull request #127 from brainstormforce/pcp-check
Browse files Browse the repository at this point in the history
Retested PR
  • Loading branch information
sushmak02 authored Jul 26, 2024
2 parents 770ad51 + 224f491 commit 931c8f6
Show file tree
Hide file tree
Showing 17 changed files with 376 additions and 365 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**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.6
**Stable tag:** 1.5.10
**Stable tag:** 1.5.11
**License:** GPLv2 or later
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html

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

## Changelog ##

### 1.5.11 ###
* Improvement: Hardened the security of plugin.
* Improvement: Compatibility with Beaver Builder 2.9
* Improvement: Added support for Global Colors selection in UABB lite modules.

### 1.5.10 ###
* Improvement: This update addressed a security bug. Props to Patchstack for privately reporting it to our team.
* Improvement: Hardened the security of plugin.

### 1.5.9 ###
* Improvement: WPML compatibility for the Heading and Ribbon module.
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.10
* Version: 1.5.11
* 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.10' );
define( 'BB_ULTIMATE_ADDON_LITE_VERSION', '1.5.11' );
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
4 changes: 2 additions & 2 deletions classes/class-uabb-admin-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ public static function register_notices() {
__( 'Hello! Thank you for choosing the Ultimate Addon for Beaver Builder to build this website!', 'ultimate-addon-for-beaver-builder' ),
__( 'Would you please mind sharing your views and give it a 5 star rating on the WordPress repository?', 'ultimate-addon-for-beaver-builder' ),
'https://wordpress.org/support/plugin/ultimate-addons-for-beaver-builder-lite/reviews/?filter=5',
__( 'Ok, you deserve it', 'ultimate-addon-for-beaver-builder' ),
__( 'Ok, you deserve it', 'ultimate-addon-for-beaver-builder'),
MONTH_IN_SECONDS,
__( 'Nope, maybe later', 'ultimate-addon-for-beaver-builder' ),
__( 'Nope, maybe later', 'ultimate-addon-for-beaver-builder'),
__( 'I already did', 'ultimate-addon-for-beaver-builder' )
),
'repeat-notice-after' => MONTH_IN_SECONDS,
Expand Down
2 changes: 1 addition & 1 deletion classes/class-uabb-iconfonts.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function recurse_copy( $src, $dst ) {

// Create directory if not exist.
if ( ! is_dir( $dst ) ) {
@mkdir( $dst );
@mkdir( $dst ); //phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_mkdir
}

while ( false !== ( $file = readdir( $dir ) ) ) {
Expand Down
2 changes: 1 addition & 1 deletion fields/uabb-gradient/uabb-gradient.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function uabb_gradient( $name, $value, $field, $settings ) {

$name_new = 'uabb_' . $name;
$value = (array) $value;
$preview = json_encode( array( 'type' => 'refresh' ) );
$preview = json_encode( array( 'type' => 'refresh' ) ); // phpcs:ignore WordPress.WP.AlternativeFunctions.json_encode_json_encode

$default = ( isset( $field['default'] ) && '' !== $field['default'] ) ? $field['default'] : '';
$direction = array(
Expand Down
Loading

0 comments on commit 931c8f6

Please sign in to comment.