Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

428
 
431
 
431
 
order_total.php
_> 11 <?php
  22 /*
<> 3 -  $Id: order_total.php 428 2006-02-14 16:47:41Z hpdl $
   3+  $Id: order_total.php 431 2006-02-15 05:57:09Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
8282       return $output_string;
  8383     }
  8484 
<>  85+    function hasActive() {
   86+      static $has_active;
   87+
   88+      if (isset($has_active) === false) {
   89+        $has_active = false;
   90+
   91+        foreach ($this->modules as $module) {
   92+          if ($GLOBALS['osC_OrderTotal_' . $module]->enabled) {
   93+            $has_active = true;
   94+            break;
   95+          }
   96+        }
   97+      }
   98+
   99+      return $has_active;
   100+    }
   101+
<_ 85102     function hasKeys() {
  86103       static $has_keys;
  87104