Plugin Directory

Changeset 3469397


Ignore:
Timestamp:
02/25/2026 11:31:51 AM (5 weeks ago)
Author:
enituretechnology
Message:

3.3.13 - 2026-02-25

  • Fix: Corrected cached quotes response handling during rates compilation to ensure accurate shipping rate calculations.

Ticket 41666760780

Location:
ltl-freight-quotes-rl-edition
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ltl-freight-quotes-rl-edition/tags/3.3.13/ltl-freight-quotes-rnl-edition.php

    r3462312 r3469397  
    44 * Plugin URI:     https://eniture.com/products/
    55 * Description:    Dynamically retrieves your negotiated shipping rates from R+L Freight and displays the results in the WooCommerce shopping cart.
    6  * Version:        3.3.12
     6 * Version:        3.3.13
    77 * Author:         Eniture Technology
    88 * Author URI:     http://eniture.com/
  • ltl-freight-quotes-rl-edition/tags/3.3.13/readme.txt

    r3462312 r3469397  
    44Requires at least: 6.4
    55Tested up to: 6.9
    6 Stable tag: 3.3.12
     6Stable tag: 3.3.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    152152== Changelog ==
    153153
     154= 3.3.13 - 2026-02-25 =
     155* Fix: Corrected cached quotes response handling during rates compilation to ensure accurate shipping rate calculations.
     156
    154157= 3.3.12 - 2026-02-16 =
    155158* Update: Introduced **bulk delete functionality** for warehouse and dropship locations to simplify location management.
  • ltl-freight-quotes-rl-edition/tags/3.3.13/rnl-carrier-service.php

    r3442253 r3469397  
    484484            }
    485485        } else {
     486            $output = $cache_response;
    486487            $response = json_decode($cache_response);
    487488        }
     
    489490        $this->InstorPickupLocalDelivery = isset($response->InstorPickupLocalDelivery) && !empty($response->InstorPickupLocalDelivery) ? $response->InstorPickupLocalDelivery : array();
    490491
    491         return $this->parse_rnl_output($cache_response, $request_data, $rnl_package, $loc_id);
     492        return $this->parse_rnl_output($output, $request_data, $rnl_package, $loc_id);
    492493    }
    493494
  • ltl-freight-quotes-rl-edition/trunk/ltl-freight-quotes-rnl-edition.php

    r3462312 r3469397  
    44 * Plugin URI:     https://eniture.com/products/
    55 * Description:    Dynamically retrieves your negotiated shipping rates from R+L Freight and displays the results in the WooCommerce shopping cart.
    6  * Version:        3.3.12
     6 * Version:        3.3.13
    77 * Author:         Eniture Technology
    88 * Author URI:     http://eniture.com/
  • ltl-freight-quotes-rl-edition/trunk/readme.txt

    r3462312 r3469397  
    44Requires at least: 6.4
    55Tested up to: 6.9
    6 Stable tag: 3.3.12
     6Stable tag: 3.3.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    152152== Changelog ==
    153153
     154= 3.3.13 - 2026-02-25 =
     155* Fix: Corrected cached quotes response handling during rates compilation to ensure accurate shipping rate calculations.
     156
    154157= 3.3.12 - 2026-02-16 =
    155158* Update: Introduced **bulk delete functionality** for warehouse and dropship locations to simplify location management.
  • ltl-freight-quotes-rl-edition/trunk/rnl-carrier-service.php

    r3442253 r3469397  
    484484            }
    485485        } else {
     486            $output = $cache_response;
    486487            $response = json_decode($cache_response);
    487488        }
     
    489490        $this->InstorPickupLocalDelivery = isset($response->InstorPickupLocalDelivery) && !empty($response->InstorPickupLocalDelivery) ? $response->InstorPickupLocalDelivery : array();
    490491
    491         return $this->parse_rnl_output($cache_response, $request_data, $rnl_package, $loc_id);
     492        return $this->parse_rnl_output($output, $request_data, $rnl_package, $loc_id);
    492493    }
    493494
Note: See TracChangeset for help on using the changeset viewer.