  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: shipping.php 432 2006-02-15 07:41:34Z hpdl $ |
| |
| 3 | + | $Id: shipping.php 438 2006-02-16 14:50:54Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
150 | 150 | | return array('id' => $quote['id'], |
| |
151 | 151 | | 'module' => $quote['module'], |
| |
152 | 152 | | 'methods' => $quote_method, |
  |
153 | | - | 'tax' => $quote['tax']); |
| |
| 153 | + | 'tax_class_id' => $quote['tax_class_id']); |
|
154 | 154 | | } |
| |
155 | 155 | | } |
| |
156 | 156 | | } |
| |
|
|
 |
… |
|
173 | 173 | | if (isset($quotes['methods'][$i]['cost']) && tep_not_null($quotes['methods'][$i]['cost'])) { |
| |
174 | 174 | | $rates[] = array('id' => $quotes['id'] . '_' . $quotes['methods'][$i]['id'], |
| |
175 | 175 | | 'title' => $quotes['module'] . ' (' . $quotes['methods'][$i]['title'] . ')', |
  |
176 | | - | 'cost' => $quotes['methods'][$i]['cost']); |
| |
| 176 | + | 'cost' => $quotes['methods'][$i]['cost'], |
| |
| 177 | + | 'tax_class_id' => $quotes['tax_class_id']); |
  |
177 | 178 | | } |
| |
178 | 179 | | } |
| |
179 | 180 | | } |