Plugin Directory

Changeset 3086717


Ignore:
Timestamp:
05/14/2024 08:11:35 PM (23 months ago)
Author:
trendappend
Message:

fixed issue with kses_pos

Location:
trendappend/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trendappend/trunk/README.txt

    r3061351 r3086717  
    55Requires at least: 3.0.1
    66Tested up to: 6.4.3
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88Requires PHP: 7.0
    99License: GPLv2 or later
  • trendappend/trunk/includes/class-trendappend.php

    r3061351 r3086717  
    7171            $this->version = trendappend_VERSION;
    7272        } else {
    73             $this->version = '1.0.0';
     73            $this->version = '1.0.1';
    7474        }
    7575        $this->plugin_name = 'trendappend';
  • trendappend/trunk/templates/trend-checkout.php

    r3061351 r3086717  
    1414           
    1515<?php
    16 echo esc_html(do_shortcode('[trendappend_checkout trend_id="'.wp_kses_pos($trend_id).'"]'));
     16echo esc_html(do_shortcode('[trendappend_checkout trend_id="'.wp_kses_post($trend_id).'"]'));
    1717?>
    1818     </div>
  • trendappend/trunk/templates/trend-lead.php

    r3061351 r3086717  
    1414           
    1515<?php
    16 echo esc_html(do_shortcode('[trendappend_lead trend_id="'.wp_kses_pos($trend_id).'"]'));
     16echo esc_html(do_shortcode('[trendappend_lead trend_id="'.wp_kses_post($trend_id).'"]'));
    1717?>
    1818     </div>
  • trendappend/trunk/templates/trend-video.php

    r3061351 r3086717  
    1414           
    1515<?php
    16 echo esc_html(do_shortcode('[trendappend_video trend_id="'.wp_kses_pos($trend_id).'"]'));
     16echo esc_html(do_shortcode('[trendappend_video trend_id="'.wp_kses_post($trend_id).'"]'));
    1717?>
    1818     </div>
  • trendappend/trunk/trendappend.php

    r3061351 r3086717  
    1717 * Plugin URI:        https://brands.trend.app/plugins/wordpress/
    1818 * Description:       TREND Official WordPress Plugin
    19  * Version:           1.0.0
     19 * Version:           1.0.1
    2020 * Author:            TrendAppend
    2121 * Author URI:        http://trend.app/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'trendappend_VERSION', '1.0.0' );
     38define( 'trendappend_VERSION', '1.0.1' );
    3939define("TRENDAPPEND_API_URL","https://api.trend.app");
    4040define("TRENDAPPEND_EMBED_URL","https://embed.trend.app");
Note: See TracChangeset for help on using the changeset viewer.