Plugin Directory

Changeset 3242372


Ignore:
Timestamp:
02/18/2025 06:07:10 AM (13 months ago)
Author:
kiranpotphode
Message:

Version 1.2.4

Location:
easy-charts/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • easy-charts/trunk/README.txt

    r3081203 r3242372  
    33Tags: chart, graph, bar, line, pie, area, stacked, stacked bar, step up bar, percent bar, stacked area, percent area, donut, polar area, waterfall easy integration, uniform, data representation, simple, download as image, responsive
    44Requires at least: 3.0
    5 Tested up to: 6.5.2
    6 Stable tag: 1.2.3
     5Tested up to: 6.7.2
     6Stable tag: 1.2.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
     80= 1.2.4 =
     81*Release Date - 18th Feb, 2025*
     82
     83* Add Sanitization for shortcode attributes.
     84
    8085= 1.2.3 =
    8186*Release Date - 4th May, 2024*
  • easy-charts/trunk/easy-charts.php

    r3081203 r3242372  
    1010 * Plugin URI:        http://kiranpotphode.github.io/easy-charts/
    1111 * Description:       Build simple, reusable, customisable charts on any page or post with ease.
    12  * Version:           1.2.3
     12 * Version:           1.2.4
    1313 * Author:            Kiran Potphode
    1414 * License:           GPL-2.0+
  • easy-charts/trunk/includes/class-easy-charts.php

    r3081203 r3242372  
    6969
    7070        $this->plugin_name = 'easy-charts';
    71         $this->version     = '1.2.3';
     71        $this->version     = '1.2.4';
    7272
    7373        $this->load_dependencies();
  • easy-charts/trunk/public/class-easy-charts-public.php

    r3081203 r3242372  
    114114     *
    115115     * @param string $atts    Attributes for shortcode.
    116      * @param string $content Content inside Shortcode enclosing tags. Default is ''.
    117116     *
    118117     * @return string Parsed Shortcode html markup.
    119118     */
    120     public static function easy_chart_shortcode_callback( $atts, $content = '' ) {
     119    public static function easy_chart_shortcode_callback( $atts ) {
    121120        $atts = shortcode_atts(
    122121            array(
     
    127126        );
    128127
    129         $chart_id = $atts['chart_id'];
     128        $chart_id = intval( $atts['chart_id'] );
    130129
    131130        if ( $chart_id ) {
Note: See TracChangeset for help on using the changeset viewer.