Changeset 3086717
- Timestamp:
- 05/14/2024 08:11:35 PM (23 months ago)
- Location:
- trendappend/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (1 diff)
-
includes/class-trendappend.php (modified) (1 diff)
-
templates/trend-checkout.php (modified) (1 diff)
-
templates/trend-lead.php (modified) (1 diff)
-
templates/trend-video.php (modified) (1 diff)
-
trendappend.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trendappend/trunk/README.txt
r3061351 r3086717 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.4.3 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later -
trendappend/trunk/includes/class-trendappend.php
r3061351 r3086717 71 71 $this->version = trendappend_VERSION; 72 72 } else { 73 $this->version = '1.0. 0';73 $this->version = '1.0.1'; 74 74 } 75 75 $this->plugin_name = 'trendappend'; -
trendappend/trunk/templates/trend-checkout.php
r3061351 r3086717 14 14 15 15 <?php 16 echo esc_html(do_shortcode('[trendappend_checkout trend_id="'.wp_kses_pos ($trend_id).'"]'));16 echo esc_html(do_shortcode('[trendappend_checkout trend_id="'.wp_kses_post($trend_id).'"]')); 17 17 ?> 18 18 </div> -
trendappend/trunk/templates/trend-lead.php
r3061351 r3086717 14 14 15 15 <?php 16 echo esc_html(do_shortcode('[trendappend_lead trend_id="'.wp_kses_pos ($trend_id).'"]'));16 echo esc_html(do_shortcode('[trendappend_lead trend_id="'.wp_kses_post($trend_id).'"]')); 17 17 ?> 18 18 </div> -
trendappend/trunk/templates/trend-video.php
r3061351 r3086717 14 14 15 15 <?php 16 echo esc_html(do_shortcode('[trendappend_video trend_id="'.wp_kses_pos ($trend_id).'"]'));16 echo esc_html(do_shortcode('[trendappend_video trend_id="'.wp_kses_post($trend_id).'"]')); 17 17 ?> 18 18 </div> -
trendappend/trunk/trendappend.php
r3061351 r3086717 17 17 * Plugin URI: https://brands.trend.app/plugins/wordpress/ 18 18 * Description: TREND Official WordPress Plugin 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: TrendAppend 21 21 * Author URI: http://trend.app/ … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'trendappend_VERSION', '1.0. 0' );38 define( 'trendappend_VERSION', '1.0.1' ); 39 39 define("TRENDAPPEND_API_URL","https://api.trend.app"); 40 40 define("TRENDAPPEND_EMBED_URL","https://embed.trend.app");
Note: See TracChangeset
for help on using the changeset viewer.