/[drupal]/contributions/modules/ubercart/uc_order/uc_order.module
ViewVC logotype

Diff of /contributions/modules/ubercart/uc_order/uc_order.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.12.2.32, Tue Oct 20 20:58:07 2009 UTC revision 1.12.2.33, Thu Oct 29 20:35:58 2009 UTC
# Line 1456  function uc_order_get_total($order, $pro Line 1456  function uc_order_get_total($order, $pro
1456      $function = $module .'_order';      $function = $module .'_order';
1457      // $order must be passed by reference.      // $order must be passed by reference.
1458      if (function_exists($function) && ($value = $function('total', $order, NULL))) {      if (function_exists($function) && ($value = $function('total', $order, NULL))) {
1459        $total += $value;        if (is_numeric($value)) {
1460            $total += $value;
1461          }
1462      }      }
1463    }    }
1464    

Legend:
Removed from v.1.12.2.32  
changed lines
  Added in v.1.12.2.33

  ViewVC Help
Powered by ViewVC 1.1.2