Changeset 3352400
- Timestamp:
- 08/29/2025 02:52:40 AM (7 months ago)
- Location:
- etsy-shop
- Files:
-
- 2 edited
- 3 copied
-
tags/3.0.7 (copied) (copied from etsy-shop/trunk)
-
tags/3.0.7/etsy-shop.php (copied) (copied from etsy-shop/trunk/etsy-shop.php) (4 diffs)
-
tags/3.0.7/readme.txt (copied) (copied from etsy-shop/trunk/readme.txt) (2 diffs)
-
trunk/etsy-shop.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
etsy-shop/tags/3.0.7/etsy-shop.php
r3349402 r3352400 9 9 Author: Frédéric Sheedy 10 10 Text Domain: etsy-shop 11 Version: 3.0. 611 Version: 3.0.7 12 12 */ 13 13 … … 36 36 */ 37 37 38 define( 'ETSY_SHOP_VERSION', '3.0. 6' );38 define( 'ETSY_SHOP_VERSION', '3.0.7' ); 39 39 define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' ); 40 40 … … 657 657 </a> 658 658 <div id="etsy-shop-quick-start-content" <?php if (!$quick_start_update) { ?>style="display:none;"<?php } ?>> 659 <form name="etsy_shop_quickstart_form" method="post" action="<?php echo wp_filter_nohtml_kses($_SERVER['REQUEST_URI']); ?>">659 <form name="etsy_shop_quickstart_form" method="post" action="<?php echo esc_attr($_SERVER['REQUEST_URI']); ?>"> 660 660 <div class="etsty-shop-quickstart-step"><?php _e( 'STEP 1', 'etsy-shop' ); ?></div><span style="font-weight: bold;"><?php _e( 'Is your Etsy API Key is valid?', 'etsy-shop' ); ?></span> 661 661 <?php if ( !is_wp_error( etsy_shop_testAPIKey()) ) { $etsy_shop_quickstart_step = 2; ?> … … 691 691 </div> 692 692 </div> 693 <form name="etsy_shop_options_form" method="post" action="<?php echo wp_filter_nohtml_kses($_SERVER['REQUEST_URI']); ?>">693 <form name="etsy_shop_options_form" method="post" action="<?php echo esc_attr($_SERVER['REQUEST_URI']); ?>"> 694 694 <table class="form-table"> 695 695 <tr valign="top"> -
etsy-shop/tags/3.0.7/readme.txt
r3349402 r3352400 5 5 Tested up to: 6.8.2 6 6 Requires at least: 5.0 7 Stable tag: 3.0. 67 Stable tag: 3.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 85 85 86 86 == Changelog == 87 88 = 3.0.7 = 89 * Use esc_attr instaed of wp_filter 87 90 88 91 = 3.0.6 = -
etsy-shop/trunk/etsy-shop.php
r3349402 r3352400 9 9 Author: Frédéric Sheedy 10 10 Text Domain: etsy-shop 11 Version: 3.0. 611 Version: 3.0.7 12 12 */ 13 13 … … 36 36 */ 37 37 38 define( 'ETSY_SHOP_VERSION', '3.0. 6' );38 define( 'ETSY_SHOP_VERSION', '3.0.7' ); 39 39 define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' ); 40 40 … … 657 657 </a> 658 658 <div id="etsy-shop-quick-start-content" <?php if (!$quick_start_update) { ?>style="display:none;"<?php } ?>> 659 <form name="etsy_shop_quickstart_form" method="post" action="<?php echo wp_filter_nohtml_kses($_SERVER['REQUEST_URI']); ?>">659 <form name="etsy_shop_quickstart_form" method="post" action="<?php echo esc_attr($_SERVER['REQUEST_URI']); ?>"> 660 660 <div class="etsty-shop-quickstart-step"><?php _e( 'STEP 1', 'etsy-shop' ); ?></div><span style="font-weight: bold;"><?php _e( 'Is your Etsy API Key is valid?', 'etsy-shop' ); ?></span> 661 661 <?php if ( !is_wp_error( etsy_shop_testAPIKey()) ) { $etsy_shop_quickstart_step = 2; ?> … … 691 691 </div> 692 692 </div> 693 <form name="etsy_shop_options_form" method="post" action="<?php echo wp_filter_nohtml_kses($_SERVER['REQUEST_URI']); ?>">693 <form name="etsy_shop_options_form" method="post" action="<?php echo esc_attr($_SERVER['REQUEST_URI']); ?>"> 694 694 <table class="form-table"> 695 695 <tr valign="top"> -
etsy-shop/trunk/readme.txt
r3349402 r3352400 5 5 Tested up to: 6.8.2 6 6 Requires at least: 5.0 7 Stable tag: 3.0. 67 Stable tag: 3.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 85 85 86 86 == Changelog == 87 88 = 3.0.7 = 89 * Use esc_attr instaed of wp_filter 87 90 88 91 = 3.0.6 =
Note: See TracChangeset
for help on using the changeset viewer.