Changeset 3342974
- Timestamp:
- 08/11/2025 03:30:41 PM (5 months ago)
- Location:
- mds-product-bulk-editor-for-woocommerce
- Files:
-
- 4 edited
-
tags/1.7.0/README.txt (modified) (1 diff)
-
tags/1.7.0/includes/helper.php (modified) (1 diff)
-
trunk/README.txt (modified) (1 diff)
-
trunk/includes/helper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mds-product-bulk-editor-for-woocommerce/tags/1.7.0/README.txt
r3342932 r3342974 Β 106 106 = 1.7.0 = 107 107 * Added: Import and Export options Β 108 * Fixed: pass the attribute 'edit' to the get methods. It was defaulting to 'view' before 108 109 109 110 = 1.6.0 = -
mds-product-bulk-editor-for-woocommerce/tags/1.7.0/includes/helper.php
r3342932 r3342974 Β 424 424 $get_method = $input_data['get']; 425 425 if ( method_exists( $product, $get_method ) ) { 426 Β $raw_value = $product->$get_method( );Β 426 $raw_value = $product->$get_method( 'edit' ); 427 427 428 428 if ( ! empty( $input_data['format_get'] ) ) { -
mds-product-bulk-editor-for-woocommerce/trunk/README.txt
r3342932 r3342974 Β 106 106 = 1.7.0 = 107 107 * Added: Import and Export options Β 108 * Fixed: pass the attribute 'edit' to the get methods. It was defaulting to 'view' before 108 109 109 110 = 1.6.0 = -
mds-product-bulk-editor-for-woocommerce/trunk/includes/helper.php
r3342139 r3342974 Β 424 424 $get_method = $input_data['get']; 425 425 if ( method_exists( $product, $get_method ) ) { 426 Β $raw_value = $product->$get_method( );Β 426 $raw_value = $product->$get_method( 'edit' ); 427 427 428 428 if ( ! empty( $input_data['format_get'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.