Plugin Directory

Changeset 2869685


Ignore:
Timestamp:
02/23/2023 12:02:18 AM (3 years ago)
Author:
fsheedy
Message:

tagging version 3.0.4

Location:
etsy-shop/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • etsy-shop/trunk/etsy-shop.php

    r2869106 r2869685  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0.3
     11Version: 3.0.4
    1212*/
    1313
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0.3' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.4' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    561561    $quick_start_update = false;
    562562    if ( isset( $_POST['submitQuickstart'] ) ) {
     563        // Nonces Verification
     564        check_admin_referer( 'etsy-shop-settings-quickstart' );
     565
    563566        // did the user enter an shop name?
    564567        if ( isset( $_POST['etsy_shop_quickstart_shop_id'] ) ) {
     
    665668                    <br><div class="etsty-shop-quickstart-step"><?php _e( 'STEP 2', 'etsy-shop' ); ?></div><span style="margin-top: 8px;font-weight: bold;"><?php _e( 'What is your Shop name on etsy?', 'etsy-shop' ); ?></span>
    666669                        <input id="etsy_shop_quickstart_shop_id" name="etsy_shop_quickstart_shop_id" type="text" size="25" value="<?php echo get_option( 'etsy_shop_quickstart_shop_id' ); ?>" class="regular-text code" />
     670                        <?php wp_nonce_field( 'etsy-shop-settings-quickstart' ); ?>
    667671                        <input type="submit" name="submitQuickstart" id="submitQuickstart" class="button-primary" value="<?php _e( 'Search', 'etsy-shop' ); ?>" />
    668672                    </form>
  • etsy-shop/trunk/readme.txt

    r2869106 r2869685  
    55Tested up to: 6.1.1
    66Requires at least: 5.0
    7 Stable tag: 3.0.3
     7Stable tag: 3.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.4 =
     89* Use Nonces for Quick Start, to prevent CSRF
    8790
    8891= 3.0.3 =
Note: See TracChangeset for help on using the changeset viewer.