Changeset 3247960
- Timestamp:
- 02/27/2025 03:42:41 PM (13 months ago)
- Location:
- product-variant-table-for-woocommerce
- Files:
-
- 51 added
- 5 edited
-
tags/1.7.2 (added)
-
tags/1.7.2/admin (added)
-
tags/1.7.2/admin/css (added)
-
tags/1.7.2/admin/css/pvtfw_backend.css (added)
-
tags/1.7.2/admin/js (added)
-
tags/1.7.2/admin/js/pvtfw_backend.js (added)
-
tags/1.7.2/inc (added)
-
tags/1.7.2/inc/admin (added)
-
tags/1.7.2/inc/admin/class_pvtfw_advance.php (added)
-
tags/1.7.2/inc/admin/class_pvtfw_form.php (added)
-
tags/1.7.2/inc/admin/class_pvtfw_settings.php (added)
-
tags/1.7.2/inc/admin/class_pvtfw_styling.php (added)
-
tags/1.7.2/inc/class_pvtfw_common.php (added)
-
tags/1.7.2/inc/compatibility.php (added)
-
tags/1.7.2/inc/frontend (added)
-
tags/1.7.2/inc/frontend/class_pvtfw_allocation.php (added)
-
tags/1.7.2/inc/frontend/class_pvtfw_available_btn.php (added)
-
tags/1.7.2/inc/frontend/class_pvtfw_cart.php (added)
-
tags/1.7.2/inc/frontend/class_pvtfw_print_table.php (added)
-
tags/1.7.2/inc/style.php (added)
-
tags/1.7.2/inc/table-parts (added)
-
tags/1.7.2/inc/table-parts/content-tbody.php (added)
-
tags/1.7.2/inc/table-parts/content-thead.php (added)
-
tags/1.7.2/inc/wpxtension (added)
-
tags/1.7.2/inc/wpxtension/wpx-menu.php (added)
-
tags/1.7.2/inc/wpxtension/wpx-setting-fields.php (added)
-
tags/1.7.2/inc/wpxtension/wpx-sidebar.php (added)
-
tags/1.7.2/inc/wpxtension/wpxtension-admin-rtl.css (added)
-
tags/1.7.2/inc/wpxtension/wpxtension-admin.css (added)
-
tags/1.7.2/inc/wpxtension/wpxtension-admin.min-rtl.css (added)
-
tags/1.7.2/inc/wpxtension/wpxtension-admin.min.css (added)
-
tags/1.7.2/languages (added)
-
tags/1.7.2/languages/product-variant-table-for-woocommerce.pot (added)
-
tags/1.7.2/product-variant-table-for-woocommerce.php (added)
-
tags/1.7.2/public (added)
-
tags/1.7.2/public/css (added)
-
tags/1.7.2/public/css/pvtfw_frontend.css (added)
-
tags/1.7.2/public/css/pvtfw_table_breakdown.css (added)
-
tags/1.7.2/public/font (added)
-
tags/1.7.2/public/font/font (added)
-
tags/1.7.2/public/font/font/fontello.eot (added)
-
tags/1.7.2/public/font/font/fontello.svg (added)
-
tags/1.7.2/public/font/font/fontello.ttf (added)
-
tags/1.7.2/public/font/font/fontello.woff (added)
-
tags/1.7.2/public/font/font/fontello.woff2 (added)
-
tags/1.7.2/public/font/fontello.css (added)
-
tags/1.7.2/public/js (added)
-
tags/1.7.2/public/js/pvtfw_frontend.js (added)
-
tags/1.7.2/public/js/pvtfw_subtotal_calc.js (added)
-
tags/1.7.2/readme.txt (added)
-
tags/1.7.2/uninstall.php (added)
-
trunk/inc/admin/class_pvtfw_form.php (modified) (3 diffs)
-
trunk/inc/admin/class_pvtfw_settings.php (modified) (1 diff)
-
trunk/languages/product-variant-table-for-woocommerce.pot (modified) (4 diffs)
-
trunk/product-variant-table-for-woocommerce.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-variant-table-for-woocommerce/trunk/inc/admin/class_pvtfw_form.php
r3147192 r3247960 324 324 325 325 //In our file that handles the request, verify the nonce. 326 if ( isset( $_REQUEST['_wpnonce'] ) && ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'pvtfw-reset-column-settings' ) ) { 327 die( esc_html__( 'Security check', 'product-variant-table-for-woocommerce' ) ); 328 } else { 329 326 if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'pvtfw-reset-column-settings' ) ) { 330 327 delete_option('pvtfw_variant_table_columns'); 331 328 update_option('pvtfw_variant_table_tab', ''); 332 329 wp_safe_redirect( admin_url( 'admin.php?page=pvtfw_variant_table' ) ); 333 330 exit(); 331 332 } else { 333 334 die( esc_html__( 'Security check', 'product-variant-table-for-woocommerce' ) ); 334 335 335 336 } … … 352 353 353 354 //In our file that handles the request, verify the nonce. 354 if ( isset( $_REQUEST['_wpnonce'] ) && ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['_wpnonce'] ) ), 'pvtfw-reset-all-settings' ) ) { 355 die( esc_html__( 'Security check', 'product-variant-table-for-woocommerce' ) ); 356 } else { 357 355 if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'pvtfw-reset-all-settings' ) ) { 358 356 $free_options_array = PVTFW_COMMON::plugin_options(); 359 357 … … 372 370 wp_safe_redirect( admin_url( 'admin.php?page=pvtfw_variant_table' ) ); 373 371 exit(); 374 372 } else { 373 374 die( esc_html__( 'Security check', 'product-variant-table-for-woocommerce' ) ); 375 375 } 376 376 -
product-variant-table-for-woocommerce/trunk/inc/admin/class_pvtfw_settings.php
r3238050 r3247960 57 57 if ( ! current_user_can( 'manage_options' ) ) { 58 58 return; 59 } 60 // Checking nonce of option page form submission 61 if ( isset($_POST['action']) && !wp_verify_nonce( sanitize_key( wp_unslash( 'action', 'action' ) ) ) ){ 62 wp_die(); 59 63 } 60 64 -
product-variant-table-for-woocommerce/trunk/languages/product-variant-table-for-woocommerce.pot
r3245832 r3247960 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PVT - Product Variation Table for WooCommerce 1.7. 1\n"5 "Project-Id-Version: PVT - Product Variation Table for WooCommerce 1.7.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/product-variant-table-for-woocommerce\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-02-2 4T06:24:54+00:00\n"12 "POT-Creation-Date: 2025-02-27T05:07:47+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.1 0.0\n"14 "X-Generator: WP-CLI 2.11.0\n" 15 15 "X-Domain: product-variant-table-for-woocommerce\n" 16 16 … … 155 155 156 156 #: inc/admin/class_pvtfw_form.php:251 157 #: inc/admin/class_pvtfw_settings.php:11 5157 #: inc/admin/class_pvtfw_settings.php:119 158 158 msgid "Are you sure to reset?" 159 159 msgstr "" … … 202 202 msgstr "" 203 203 204 #: inc/admin/class_pvtfw_settings.php:8 1204 #: inc/admin/class_pvtfw_settings.php:85 205 205 #: product-variant-table-for-woocommerce.php:416 206 206 msgid "Settings" 207 207 msgstr "" 208 208 209 #: inc/admin/class_pvtfw_settings.php:8 3209 #: inc/admin/class_pvtfw_settings.php:87 210 210 msgid "Layout" 211 211 msgstr "" 212 212 213 #: inc/admin/class_pvtfw_settings.php:11 4213 #: inc/admin/class_pvtfw_settings.php:118 214 214 msgid "Save Settings" 215 215 msgstr "" 216 216 217 #: inc/admin/class_pvtfw_settings.php:11 5217 #: inc/admin/class_pvtfw_settings.php:119 218 218 msgid "Reset All" 219 219 msgstr "" -
product-variant-table-for-woocommerce/trunk/product-variant-table-for-woocommerce.php
r3245832 r3247960 8 8 Text Domain: product-variant-table-for-woocommerce 9 9 Domain Path: /languages 10 Version: 1.7. 110 Version: 1.7.2 11 11 Requires at least: 4.7.0 12 12 Requires PHP: 5.6.20 13 13 WC requires at least: 3.0.0 14 WC tested up to: 9. 614 WC tested up to: 9.7 15 15 License: GPLv2 or later 16 16 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 */ 34 34 35 define("PVTFW_VARIANT_TABLE_VERSION", '1.7. 1');35 define("PVTFW_VARIANT_TABLE_VERSION", '1.7.2'); 36 36 define("PVTFW_REQUIRED_PRO_VERSION", '1.7.0'); 37 37 define("PVTFW_DIR", plugin_dir_path(__FILE__) ); -
product-variant-table-for-woocommerce/trunk/readme.txt
r3245832 r3247960 5 5 Tested up to: 6.7 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.7. 17 Stable tag: 1.7.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 179 179 == Changelog == 180 180 181 = 1.7.1 [24-02-2025] Monday = 182 * Update: CSS and checked with autoprefixers. 181 = 1.7.2 [27-02-2025] Thursday = 182 * Security: Checked codebase. 183 * Compatibility: WooCommerce 9.7. 183 184 184 185 [See changelog for all versions.](https://github.com/WPXtension/product-variation-table-for-woocommerce/blob/main/changelog-free.md)
Note: See TracChangeset
for help on using the changeset viewer.