Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

153
 
199
 
199
 
order_total.php
_> 11 <?php
  22 /*
<> 3 -  $Id: order_total.php 153 2005-08-04 12:57:59Z hpdl $
   3+  $Id: order_total.php 199 2005-09-22 15:56:13Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
1515 
  1616 // class constructor
  1717     function order_total() {
<> 18 -      global $osC_Session;
  19 -
2018       if (defined('MODULE_ORDER_TOTAL_INSTALLED') && tep_not_null(MODULE_ORDER_TOTAL_INSTALLED)) {
  2119         $this->modules = explode(';', MODULE_ORDER_TOTAL_INSTALLED);
  2220 
  2321         reset($this->modules);
  2422         while (list(, $value) = each($this->modules)) {
<> 25 -          include(DIR_WS_LANGUAGES . $osC_Session->value('language') . '/modules/order_total/' . $value);
   23+          include(DIR_WS_LANGUAGES . $_SESSION['language'] . '/modules/order_total/' . $value);
<_ 2624           include(DIR_WS_MODULES . 'order_total/' . $value);
  2725 
  2826           $class = substr($value, 0, strrpos($value, '.'));