Plugin Directory

Changeset 2869106


Ignore:
Timestamp:
02/22/2023 03:47:34 AM (3 years ago)
Author:
fsheedy
Message:

tagging version 3.0.3

Location:
etsy-shop
Files:
4 edited
1 copied

Legend:

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

    r2716535 r2869106  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0.2
     11Version: 3.0.3
    1212*/
    1313
    1414/*
    15  * Copyright 2011-2022  Frédéric Sheedy
     15 * Copyright 2011-2023  Frédéric Sheedy
    1616 *
    1717 * This program is free software; you can redistribute it and/or modify
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0.2' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.3' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    510510
    511511    if ( isset( $_POST['submit'] ) ) {
     512
     513        // Nonces Verification
     514        $key = get_option( 'etsy_shop_api_key' );
     515        check_admin_referer( 'etsy-shop-update-settings_'.$key );
     516
    512517        // did the user enter an API Key?
    513518        if ( isset( $_POST['etsy_shop_api_key'] ) ) {
     
    751756
    752757        <p class="submit">
     758                <?php $key = get_option( 'etsy_shop_api_key' );
     759                 wp_nonce_field( 'etsy-shop-update-settings_'.$key ); ?>
    753760                <input type="submit" name="submit" id="submit" class="button-primary" value="<?php _e( 'Save Changes', 'etsy-shop' ); ?>" />
    754761        </p>
  • etsy-shop/tags/3.0.3/readme.txt

    r2738306 r2869106  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9RPPQUY4M2AHL&lc=CA&item_name=Etsy%2dShop%20Wordpress%20Plugin&currency_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
    44Tags: etsy, etsy listing, bracket, shortcode, shopping, shop, store, sell
    5 Tested up to: 6.0
     5Tested up to: 6.1.1
    66Requires at least: 5.0
    7 Stable tag: 3.0.2
     7Stable tag: 3.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.3 =
     89* Use Nonces for Settings Page, to prevent CSRF
    8790
    8891= 3.0.2 =
  • etsy-shop/trunk/etsy-shop.php

    r2716535 r2869106  
    99Author: Frédéric Sheedy
    1010Text Domain: etsy-shop
    11 Version: 3.0.2
     11Version: 3.0.3
    1212*/
    1313
    1414/*
    15  * Copyright 2011-2022  Frédéric Sheedy
     15 * Copyright 2011-2023  Frédéric Sheedy
    1616 *
    1717 * This program is free software; you can redistribute it and/or modify
     
    3636 */
    3737
    38 define( 'ETSY_SHOP_VERSION',  '3.0.2' );
     38define( 'ETSY_SHOP_VERSION',  '3.0.3' );
    3939define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' );
    4040
     
    510510
    511511    if ( isset( $_POST['submit'] ) ) {
     512
     513        // Nonces Verification
     514        $key = get_option( 'etsy_shop_api_key' );
     515        check_admin_referer( 'etsy-shop-update-settings_'.$key );
     516
    512517        // did the user enter an API Key?
    513518        if ( isset( $_POST['etsy_shop_api_key'] ) ) {
     
    751756
    752757        <p class="submit">
     758                <?php $key = get_option( 'etsy_shop_api_key' );
     759                 wp_nonce_field( 'etsy-shop-update-settings_'.$key ); ?>
    753760                <input type="submit" name="submit" id="submit" class="button-primary" value="<?php _e( 'Save Changes', 'etsy-shop' ); ?>" />
    754761        </p>
  • etsy-shop/trunk/readme.txt

    r2738306 r2869106  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9RPPQUY4M2AHL&lc=CA&item_name=Etsy%2dShop%20Wordpress%20Plugin&currency_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
    44Tags: etsy, etsy listing, bracket, shortcode, shopping, shop, store, sell
    5 Tested up to: 6.0
     5Tested up to: 6.1.1
    66Requires at least: 5.0
    7 Stable tag: 3.0.2
     7Stable tag: 3.0.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 3.0.3 =
     89* Use Nonces for Settings Page, to prevent CSRF
    8790
    8891= 3.0.2 =
Note: See TracChangeset for help on using the changeset viewer.