Changeset 2869106
- Timestamp:
- 02/22/2023 03:47:34 AM (3 years ago)
- Location:
- etsy-shop
- Files:
-
- 4 edited
- 1 copied
-
tags/3.0.3 (copied) (copied from etsy-shop/trunk)
-
tags/3.0.3/etsy-shop.php (modified) (4 diffs)
-
tags/3.0.3/readme.txt (modified) (2 diffs)
-
trunk/etsy-shop.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
etsy-shop/tags/3.0.3/etsy-shop.php
r2716535 r2869106 9 9 Author: Frédéric Sheedy 10 10 Text Domain: etsy-shop 11 Version: 3.0. 211 Version: 3.0.3 12 12 */ 13 13 14 14 /* 15 * Copyright 2011-202 2Frédéric Sheedy15 * Copyright 2011-2023 Frédéric Sheedy 16 16 * 17 17 * This program is free software; you can redistribute it and/or modify … … 36 36 */ 37 37 38 define( 'ETSY_SHOP_VERSION', '3.0. 2' );38 define( 'ETSY_SHOP_VERSION', '3.0.3' ); 39 39 define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' ); 40 40 … … 510 510 511 511 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 512 517 // did the user enter an API Key? 513 518 if ( isset( $_POST['etsy_shop_api_key'] ) ) { … … 751 756 752 757 <p class="submit"> 758 <?php $key = get_option( 'etsy_shop_api_key' ); 759 wp_nonce_field( 'etsy-shop-update-settings_'.$key ); ?> 753 760 <input type="submit" name="submit" id="submit" class="button-primary" value="<?php _e( 'Save Changes', 'etsy-shop' ); ?>" /> 754 761 </p> -
etsy-shop/tags/3.0.3/readme.txt
r2738306 r2869106 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9RPPQUY4M2AHL&lc=CA&item_name=Etsy%2dShop%20Wordpress%20Plugin¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted 4 4 Tags: etsy, etsy listing, bracket, shortcode, shopping, shop, store, sell 5 Tested up to: 6. 05 Tested up to: 6.1.1 6 6 Requires at least: 5.0 7 Stable tag: 3.0. 27 Stable tag: 3.0.3 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.3 = 89 * Use Nonces for Settings Page, to prevent CSRF 87 90 88 91 = 3.0.2 = -
etsy-shop/trunk/etsy-shop.php
r2716535 r2869106 9 9 Author: Frédéric Sheedy 10 10 Text Domain: etsy-shop 11 Version: 3.0. 211 Version: 3.0.3 12 12 */ 13 13 14 14 /* 15 * Copyright 2011-202 2Frédéric Sheedy15 * Copyright 2011-2023 Frédéric Sheedy 16 16 * 17 17 * This program is free software; you can redistribute it and/or modify … … 36 36 */ 37 37 38 define( 'ETSY_SHOP_VERSION', '3.0. 2' );38 define( 'ETSY_SHOP_VERSION', '3.0.3' ); 39 39 define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' ); 40 40 … … 510 510 511 511 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 512 517 // did the user enter an API Key? 513 518 if ( isset( $_POST['etsy_shop_api_key'] ) ) { … … 751 756 752 757 <p class="submit"> 758 <?php $key = get_option( 'etsy_shop_api_key' ); 759 wp_nonce_field( 'etsy-shop-update-settings_'.$key ); ?> 753 760 <input type="submit" name="submit" id="submit" class="button-primary" value="<?php _e( 'Save Changes', 'etsy-shop' ); ?>" /> 754 761 </p> -
etsy-shop/trunk/readme.txt
r2738306 r2869106 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9RPPQUY4M2AHL&lc=CA&item_name=Etsy%2dShop%20Wordpress%20Plugin¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted 4 4 Tags: etsy, etsy listing, bracket, shortcode, shopping, shop, store, sell 5 Tested up to: 6. 05 Tested up to: 6.1.1 6 6 Requires at least: 5.0 7 Stable tag: 3.0. 27 Stable tag: 3.0.3 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.3 = 89 * Use Nonces for Settings Page, to prevent CSRF 87 90 88 91 = 3.0.2 =
Note: See TracChangeset
for help on using the changeset viewer.