Plugin Directory

Changeset 3442812


Ignore:
Timestamp:
01/19/2026 09:26:26 PM (2 months ago)
Author:
wpbits
Message:

Release version 1.8.1

Location:
wpbits-addons-for-elementor
Files:
939 added
56 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • wpbits-addons-for-elementor/trunk/class-wpbits.php

    r3424356 r3442812  
    1919     * @var string
    2020     */
    21     public $version = '1.8';
     21    public $version = '1.8.1';
    2222
    2323    /**
  • wpbits-addons-for-elementor/trunk/i18n/languages/wpbits-addons-for-elementor.pot

    r3424356 r3442812  
    1 # Copyright (C) 2025 WPBits
     1# Copyright (C) 2026 WPBits
    22# This file is distributed under the GPL3.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WPBits Addons For Elementor 1.8\n"
     5"Project-Id-Version: WPBits Addons For Elementor 1.8.1\n"
    66"Report-Msgid-Bugs-To: https://wpbits.net\n"
    7 "POT-Creation-Date: 2025-12-20 13:30:19+00:00\n"
     7"POT-Creation-Date: 2026-01-19 21:10:39+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
    1010"Content-Transfer-Encoding: 8bit\n"
    11 "PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n"
     11"PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n"
    1212"Last-Translator: \n"
    1313"Language-Team: WPBits\n"
  • wpbits-addons-for-elementor/trunk/includes/widgets/image_compare.php

    r3424356 r3442812  
    605605            $after_label = esc_html__( 'After', 'wpbits-addons-for-elementor' );
    606606        }
     607
     608        $before_label = esc_html(htmlspecialchars($before_label, ENT_QUOTES, 'UTF-8'));
     609        $after_label = esc_html(htmlspecialchars($after_label, ENT_QUOTES, 'UTF-8'));
    607610        ?>
    608611        <div class="wpb-image-compare">
  • wpbits-addons-for-elementor/trunk/includes/widgets/text_rotator.php

    r3424356 r3442812  
    364364        <?php echo '<' . Utils::validate_html_tag($settings['html_tag']) . ' class="wpb-anim-text-wrapper">'; ?>
    365365        <span class="wpb-anim-text-prefix"><?php echo esc_html( sanitize_text_field( $settings['prefix_text'] ) ); ?></span>
    366         <span class="wpb-anim-text" style="display:none;" data-txtanim="<?php echo esc_attr($settings['anim']); ?>" data-animduration="<?php echo esc_attr($settings['anim_duration']); ?>">
    367         <?php $last_key = end($settings['list']); ?>   
    368         <?php foreach ( $settings['list'] as $item ) { ?>
    369         <?php echo esc_html( sanitize_text_field( $item['title'] ) ); ?><?php if ($item != $last_key) { ?> | <?php } ?>
    370         <?php } ?>
    371         </span>   
     366        <span class="wpb-anim-text" style="display:none;" data-txtanim="<?php echo esc_attr(sanitize_text_field($settings['anim'])); ?>" data-animduration="<?php echo esc_attr($settings['anim_duration']); ?>"><?php $last_key = end($settings['list']); ?><?php foreach ( $settings['list'] as $item ) { ?> <?php echo htmlspecialchars( $item['title'] ); ?><?php if ($item != $last_key) { ?> | <?php } ?><?php } ?></span>
    372367        <span class="wpb-anim-text-suffix"><?php echo esc_html( sanitize_text_field( $settings['suffix_text'] ) ); ?></span>
    373368        <?php echo '</' . Utils::validate_html_tag($settings['html_tag']) . '>'; ?>
  • wpbits-addons-for-elementor/trunk/includes/widgets/tooltip.php

    r3424356 r3442812  
    850850       
    851851        // Sanitize tooltip content to prevent XSS while allowing safe HTML formatting
    852         $tooltip_content = wp_kses_post( $settings['tooltip_content'] );
     852        $tooltip_content = wp_kses_post( htmlspecialchars($settings['tooltip_content']) );
    853853       
    854854        ?>
  • wpbits-addons-for-elementor/trunk/readme.txt

    r3424356 r3442812  
    44Requires at least: 5.6
    55Tested up to: 6.7.1
    6 Stable tag: 1.8
     6Stable tag: 1.8.1
    77Requires PHP: 5.4
    88License: GPLv2 or later
     
    7777
    7878== Changelog ==
     79
     80= 1.8.1 =
     81* Minor security improvements.
    7982
    8083= 1.8 =
  • wpbits-addons-for-elementor/trunk/wpbits-addons-for-elementor.php

    r3424356 r3442812  
    44 * Plugin URI: https://wpbits.net/
    55 * Description: Addons for Elementor Page Builder
    6  * Version: 1.8
     6 * Version: 1.8.1
    77 * Author: WPBits
    88 * License: GPL3
Note: See TracChangeset for help on using the changeset viewer.