Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

151
 
368
 
368
 
order_total.php
_> 11 <?php
  22 /*
<> 3 -  $Id: order_total.php 151 2005-08-02 14:33:25Z mattice $
   3+  $Id: order_total.php 368 2005-12-22 16:27:23Z 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);
  26 -          include(DIR_WS_MODULES . 'order_total/' . $value);
   23+          include('includes/languages/' . $_SESSION['language'] . '/modules/order_total/' . $value);
   24+          include('includes/modules/order_total/' . $value);
<_ 2725 
  2826           $class = substr($value, 0, strrpos($value, '.'));
  2927           $GLOBALS[$class] = new $class;