Plugin Directory

Changeset 3352400


Ignore:
Timestamp:
08/29/2025 02:52:40 AM (7 months ago)
Author:
fsheedy
Message:

tagging version 3.0.7

Location:
etsy-shop
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • etsy-shop/tags/3.0.7/etsy-shop.php

    r3349402 r3352400  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0.6
     11Version: 3.0.7
    1212*/
    1313
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0.6' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.7' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    657657            </a>
    658658            <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']); ?>">
    660660                    <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>
    661661                    <?php if ( !is_wp_error( etsy_shop_testAPIKey()) ) { $etsy_shop_quickstart_step = 2; ?>
     
    691691            </div>
    692692        </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']); ?>">
    694694            <table class="form-table">
    695695                <tr valign="top">
  • etsy-shop/tags/3.0.7/readme.txt

    r3349402 r3352400  
    55Tested up to: 6.8.2
    66Requires at least: 5.0
    7 Stable tag: 3.0.6
     7Stable tag: 3.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.7 =
     89* Use esc_attr instaed of wp_filter
    8790
    8891= 3.0.6 =
  • etsy-shop/trunk/etsy-shop.php

    r3349402 r3352400  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0.6
     11Version: 3.0.7
    1212*/
    1313
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0.6' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.7' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    657657            </a>
    658658            <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']); ?>">
    660660                    <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>
    661661                    <?php if ( !is_wp_error( etsy_shop_testAPIKey()) ) { $etsy_shop_quickstart_step = 2; ?>
     
    691691            </div>
    692692        </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']); ?>">
    694694            <table class="form-table">
    695695                <tr valign="top">
  • etsy-shop/trunk/readme.txt

    r3349402 r3352400  
    55Tested up to: 6.8.2
    66Requires at least: 5.0
    7 Stable tag: 3.0.6
     7Stable tag: 3.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.7 =
     89* Use esc_attr instaed of wp_filter
    8790
    8891= 3.0.6 =
Note: See TracChangeset for help on using the changeset viewer.