Changeset 2763332
- Timestamp:
- 07/29/2022 09:18:42 AM (4 years ago)
- Location:
- woocommerce-product-importer/trunk
- Files:
-
- 3 edited
-
product-importer.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
templates/admin/import_upload.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-product-importer/trunk/product-importer.php
r2733159 r2763332 4 4 * Plugin URI: https://visser.com.au/woocommerce/plugins/product-importer/ 5 5 * Description: Import Products, Categories, Tags and product images into your WooCommerce store from simple formatted files (e.g. CSV, TSV, TXT, etc.). 6 * Version: 1.5. 26 * Version: 1.5.4 7 7 * Author: Visser Labs 8 8 * Author URI: https://visser.com.au/about/ -
woocommerce-product-importer/trunk/readme.txt
r2733159 r2763332 5 5 Tags: woocommerce import, woocommerce product import, woocommerce import products, woocommerce import categories, import woocommerce products, product import, csv, excel 6 6 Requires at least: 2.9.2 7 Tested up to: 6.0 8 Stable tag: 1.5. 37 Tested up to: 6.0.1 8 Stable tag: 1.5.4 9 9 License: GPLv2 or later 10 10 … … 141 141 == Changelog == 142 142 143 = 1.5.4 = 144 * Fixed: XSS vulnerability when previewing import files (thanks for reporting) 145 143 146 = 1.5.3 = 144 147 * Fixed: Sanitize GET and POST form attributes (thanks for reporting) -
woocommerce-product-importer/trunk/templates/admin/import_upload.php
r1091524 r2763332 19 19 <th class="vertical-align-middle text-align-right" valign="top"> 20 20 <input type="hidden" name="column[]" value="<?php echo $key+1; ?>" /> 21 <code><?php echo $cell; ?></code>21 <code><?php echo esc_attr( $cell ); ?></code> 22 22 </th> 23 23 <td class="vertical-align-middle text-align-center column-equals"><strong>=</strong></td> … … 31 31 </td> 32 32 <td class="vertical-align-middle"> 33 <code><?php echo woo_pi_format_cell_preview( $second_row[$key], $key, $cell); ?></code>33 <code><?php echo esc_attr( woo_pi_format_cell_preview( $second_row[$key], $key, $cell ) ); ?></code> 34 34 </td> 35 35 </tr>
Note: See TracChangeset
for help on using the changeset viewer.