  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: ot_shipping.php,v 1.15 2003/02/07 22:01:57 dgw_ Exp $ |
| |
| 3 | + | $Id: ot_shipping.php 1739 2007-12-20 00:52:16Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
7 | 7 | | |
  |
8 | | - | Copyright (c) 2003 osCommerce |
| |
| 8 | + | Copyright (c) 2007 osCommerce |
|
9 | 9 | | |
| |
10 | 10 | | Released under the GNU General Public License |
| |
11 | 11 | | */ |
| |
|
|
 |
… |
|
39 | 39 | | } |
| |
40 | 40 | | |
| |
41 | 41 | | if ( ($pass == true) && ( ($order->info['total'] - $order->info['shipping_cost']) >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { |
  |
42 | | - | $order->info['shipping_method'] = $this->title; |
| |
| 42 | + | $order->info['shipping_method'] = FREE_SHIPPING_TITLE; |
  |
43 | 43 | | $order->info['total'] -= $order->info['shipping_cost']; |
| |
44 | 44 | | $order->info['shipping_cost'] = 0; |
| |
45 | 45 | | } |