Plugin Directory

Changeset 3235022


Ignore:
Timestamp:
02/04/2025 09:03:30 PM (14 months ago)
Author:
LogicHunt
Message:

Security Vulnerability Resolved

Location:
wp-counter-up
Files:
107 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-counter-up/trunk/README.txt

    r3155652 r3235022  
    44Tags: number counter, counter, animated numbers, animated number counter, counter up, counter number, milestone, milestone counter, stats counter, product counter, followers counter, countup, animated counter, wordpress number counter
    55Requires at least: 5.5
    6 Tested up to: 6.5.2
    7 Stable tag: 2.4.0
     6Tested up to: 6.7.1
     7Stable tag: 3.0.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    130130== Changelog ==
    131131
     132= 3.0.0 =
     133* Security Vulnerability Resolved.
     134* Check Latest Compatibility.
     135
    132136= 2.4.0 =
    133137* Updated Plugin Securities.
  • wp-counter-up/trunk/public/class-wp-counter-up-public.php

    r3081225 r3235022  
    234234
    235235        $cats       = trim($params['cat'] );
    236 
    237         $text_color     = $params['text_color'];
    238         $number_color   = $params['number_color'];
     236       
     237
     238        //$text_color     = $params['text_color'];
     239
     240        $text_color = isset($params['text_color']) ? sanitize_text_field($params['text_color']) : '';
     241        $text_color = esc_attr($text_color);
     242
     243
     244        //$number_color   = $params['number_color'];
     245       
     246        $number_color   = isset($params['number_color']) ? sanitize_text_field($params['number_color']) : '';
     247        $number_color   = esc_attr($number_color);
     248
     249       //die($text_color);   
    239250        $custom_class   = esc_html($params['custom_class']);
    240251        $row_item       = intval($params['row_item']);
  • wp-counter-up/trunk/wp-counter-up.php

    r3155652 r3235022  
    1111 * Plugin URI:        http://logichunt.com/product/wordpress-counter-up
    1212 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    13  * Version:           2.4.0
     13 * Version:           3.0.0
    1414 * Author:            LogicHunt Inc.
    1515 * Author URI:        http://logichunt.com
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'WP_COUNTER_UP', '2.2.0' );
     32define( 'WP_COUNTER_UP', '3.0.0' );
    3333
    3434//plugin definition specific constants
    35 defined( 'LGX_WCU_PLUGIN_VERSION' )        or define( 'LGX_WCU_PLUGIN_VERSION', '2.4.0' );
     35defined( 'LGX_WCU_PLUGIN_VERSION' )        or define( 'LGX_WCU_PLUGIN_VERSION', '3.0.0' );
    3636defined( 'LGX_WCU_WP_PLUGIN' )             or define( 'LGX_WCU_WP_PLUGIN', 'wp-counter-up' );
    3737defined( 'LGX_WCU_PLUGIN_BASE' )           or define( 'LGX_WCU_PLUGIN_BASE', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.