Plugin Directory

Changeset 3338475


Ignore:
Timestamp:
08/03/2025 03:10:24 PM (4 months ago)
Author:
hashthemes
Message:

security bug fixed

Location:
easy-elementor-addons
Files:
448 added
4 edited

Legend:

Unmodified
Added
Removed
  • easy-elementor-addons/trunk/assets/css/frontend.css

    r3300900 r3338475  
    852852Countdown Styles
    853853--------------------------------------------------------------*/
    854 .eead-counter-layout-column .eead-countdown-items {
    855     flex-direction: column;
    856 }
    857 
    858854.eead-countdown-items {
    859855    display: flex;
  • easy-elementor-addons/trunk/easy-elementor-addons.php

    r3333539 r3338475  
    55 * Plugin URI: https://demo.hashthemes.com/easy-elementor-addons/
    66 * Description: Level up with Easy Elementor Addons – adds powerful widgets and sleek design tools to your favorite Elementor page builder.
    7  * Version: 2.2.7
     7 * Version: 2.2.8
    88 * Author: HashThemes
    99 * Author URI: https://hashthemes.com/
     
    1919}
    2020
    21 define('EEAD_VERSION', '2.2.7');
     21define('EEAD_VERSION', '2.2.8');
    2222
    2323define('EEAD_FILE', __FILE__);
  • easy-elementor-addons/trunk/inc/admin-menu/admin-menu-class.php

    r3276831 r3338475  
    3333
    3434    public function eead_settings_save() {
     35        if (!current_user_can('manage_options')) {
     36            return;
     37        }
    3538
    3639        if (isset($_POST['wp_nonce']) && wp_verify_nonce($_POST['wp_nonce'], 'eead_ajax_nonce')) {
     
    4952
    5053    public function eead_widgets_save() {
     54        if (!current_user_can('manage_options')) {
     55            return;
     56        }
    5157
    5258        if (isset($_POST['wp_nonce']) && wp_verify_nonce($_POST['wp_nonce'], 'eead_ajax_nonce')) {
  • easy-elementor-addons/trunk/readme.txt

    r3333539 r3338475  
    44Requires at least: 6.3
    55Tested up to: 6.8
    6 Stable tag: 2.2.7
     6Stable tag: 2.2.8
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    145145 
    146146== Changelog ==
     147= 2.2.8 - Jul 31, 2025 =
     148* Security bug reported by patchstack - Fixed
     149
    147150= 2.2.7 - Jul 24, 2025 =
    148151* Security bug reported by patchstack - Fixed
Note: See TracChangeset for help on using the changeset viewer.