Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

432
 
438
 
438
 
shipping.php
_> 11 <?php
  22 /*
<> 3 -  $Id: shipping.php 432 2006-02-15 07:41:34Z hpdl $
   3+  $Id: shipping.php 438 2006-02-16 14:50:54Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
150150                 return array('id' => $quote['id'],
  151151                              'module' => $quote['module'],
  152152                              'methods' => $quote_method,
<> 153 -                             'tax' => $quote['tax']);
   153+                             'tax_class_id' => $quote['tax_class_id']);
154154               }
  155155             }
  156156           }
     
 !
173173               if (isset($quotes['methods'][$i]['cost']) && tep_not_null($quotes['methods'][$i]['cost'])) {
  174174                 $rates[] = array('id' => $quotes['id'] . '_' . $quotes['methods'][$i]['id'],
  175175                                  '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']);
<_ 177178               }
  178179             }
  179180           }