Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

477
 
1739
 
1739
 
payment.php
_> 11 <?php
  22 /*
<> 3 -  $Id: payment.php,v 1.37 2003/06/09 22:26:32 hpdl Exp $
   3+  $Id: payment.php 1739 2007-12-20 00:52:16Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
  77 
<> 8 -  Copyright (c) 2003 osCommerce
   8+  Copyright (c) 2007 osCommerce
99 
  1010   Released under the GNU General Public License
  1111 */
     
 !
122122       return $js;
  123123     }
  124124 
<>  125+    function checkout_initialization_method() {
   126+      $initialize_array = array();
   127+
   128+      if (is_array($this->modules)) {
   129+        reset($this->modules);
   130+        while (list(, $value) = each($this->modules)) {
   131+          $class = substr($value, 0, strrpos($value, '.'));
   132+          if ($GLOBALS[$class]->enabled && method_exists($GLOBALS[$class], 'checkout_initialization_method')) {
   133+            $initialize_array[] = $GLOBALS[$class]->checkout_initialization_method();
   134+          }
   135+        }
   136+      }
   137+
   138+      return $initialize_array;
   139+    }
   140+
<_ 125141     function selection() {
  126142       $selection_array = array();
  127143