=== modified file 'ca/ca.module'
--- ca/ca.module	2009-05-14 21:04:36 +0000
+++ ca/ca.module	2009-10-08 21:49:21 +0000
@@ -11,7 +11,7 @@
  */
 define('CA_UI_PATH', 'admin/store/ca');
 
-require_once('ca.ca.inc');
+require_once(dirname(__FILE__) .'/ca.ca.inc');
 
 /*******************************************************************************
  * Drupal Hooks

=== modified file 'payment/uc_cybersource/uc_cybersource.module'
--- payment/uc_cybersource/uc_cybersource.module	2009-07-11 19:04:32 +0000
+++ payment/uc_cybersource/uc_cybersource.module	2009-10-08 21:55:57 +0000
@@ -426,7 +426,7 @@
 // Handles the SOAP charge request and Ubercart order save.
 function _uc_cybersource_soap_charge($order, $amount, $data, $cc_type, $country) {
   // Include the SOAP helper file.
-  require_once(drupal_get_path('module', 'uc_cybersource') .'/uc_cybersource.soap.inc');
+  module_load_include('inc', 'uc_cybersource', 'uc_cybersource.soap');
   global $user;
 
   // Set the URL for the CyberSource SOAP Toolkit API WSDL.
@@ -734,7 +734,7 @@
   }
 
   // Include the SOAP helper file.
-  require_once(drupal_get_path('module', 'uc_cybersource') .'/uc_cybersource.soap.inc');
+  module_load_include('inc', 'uc_cybersource', 'uc_cybersource.soap');
   global $user;
 
   // Set the URL for the CyberSource SOAP Toolkit API WSDL.

=== modified file 'shipping/uc_shipping/uc_shipping.module'
--- shipping/uc_shipping/uc_shipping.module	2009-08-17 21:21:34 +0000
+++ shipping/uc_shipping/uc_shipping.module	2009-10-08 21:56:11 +0000
@@ -8,7 +8,7 @@
  * numbers.
  */
 
-require_once('uc_shipping.ca.inc');
+require_once(dirname(__FILE__) .'/uc_shipping.ca.inc');
 
 /******************************************************************************
  * Drupal hooks                                                               *

=== modified file 'uc_attribute/uc_attribute.module'
--- uc_attribute/uc_attribute.module	2009-09-29 16:15:09 +0000
+++ uc_attribute/uc_attribute.module	2009-10-08 21:56:27 +0000
@@ -13,7 +13,7 @@
  * hook system.
  */
 
-require_once('uc_attribute.ca.inc');
+require_once(dirname(__FILE__) .'/uc_attribute.ca.inc');
 
 /******************************************************************************
  * Drupal Hooks                                                               *

=== modified file 'uc_cart/uc_cart.module'
--- uc_cart/uc_cart.module	2009-09-23 15:38:25 +0000
+++ uc_cart/uc_cart.module	2009-10-08 21:56:55 +0000
@@ -11,8 +11,8 @@
  * products, and checkout to be extensible.
  */
 
-require_once('uc_cart_checkout_pane.inc');
-require_once('uc_cart.ca.inc');
+require_once(dirname(__FILE__) .'/uc_cart_checkout_pane.inc');
+require_once(dirname(__FILE__) .'/uc_cart.ca.inc');
 
 /*******************************************************************************
  * Hook Functions (Drupal)

=== modified file 'uc_file/uc_file.module'
--- uc_file/uc_file.module	2009-09-16 17:26:02 +0000
+++ uc_file/uc_file.module	2009-10-08 21:57:09 +0000
@@ -14,7 +14,7 @@
  * Development sponsored by the Ubercart project.  http://www.ubercart.org
  */
 
-require_once('uc_file.ca.inc');
+require_once(dirname(__FILE__) .'/uc_file.ca.inc');
 
 /**
  * The max amount of files shown on any page that displays files

=== modified file 'uc_order/uc_order.module'
--- uc_order/uc_order.module	2009-09-22 14:36:22 +0000
+++ uc_order/uc_order.module	2009-10-08 21:57:24 +0000
@@ -11,9 +11,9 @@
  * displayed to customers.
  */
 
-require_once('uc_order.order_pane.inc');
-require_once('uc_order.line_item.inc');
-require_once('uc_order.ca.inc');
+require_once(dirname(__FILE__) .'/uc_order.order_pane.inc');
+require_once(dirname(__FILE__) .'/uc_order.line_item.inc');
+require_once(dirname(__FILE__) .'/uc_order.ca.inc');
 
 /*******************************************************************************
  * Hook Functions (Drupal)

=== modified file 'uc_roles/uc_roles.module'
--- uc_roles/uc_roles.module	2009-09-18 15:46:00 +0000
+++ uc_roles/uc_roles.module	2009-10-08 21:57:46 +0000
@@ -13,7 +13,7 @@
  * Development sponsored by the Ubercart project.  http://www.ubercart.org
  */
 
-require_once 'uc_roles.ca.inc';
+require_once(dirname(__FILE__) .'/uc_roles.ca.inc');
 
 /******************************************************************************
  * Hook Functions (Drupal)                                                    *

=== modified file 'uc_stock/uc_stock.module'
--- uc_stock/uc_stock.module	2009-09-23 17:59:16 +0000
+++ uc_stock/uc_stock.module	2009-10-08 21:57:59 +0000
@@ -14,7 +14,7 @@
  * Development sponsored by the Ubercart project. http://www.ubercart.org
  */
 
-require_once('uc_stock.ca.inc');
+require_once(dirname(__FILE__) .'/uc_stock.ca.inc');
 
 /******************************************************************************
  *  Hook Functions (Drupal)                                                   *

=== modified file 'uc_store/uc_store.module'
--- uc_store/uc_store.module	2009-10-08 21:16:48 +0000
+++ uc_store/uc_store.module	2009-10-08 21:59:12 +0000
@@ -11,7 +11,7 @@
  */
 
 // Ubercart price API may be required before hook_init() is invoked.
-require_once dirname(__FILE__) .'/includes/uc_price.inc';
+require_once(dirname(__FILE__) .'/includes/uc_price.inc');
 
 /**
  * Unit conversion ratios.

=== modified file 'uc_taxes/uc_taxes.module'
--- uc_taxes/uc_taxes.module	2009-09-21 14:13:04 +0000
+++ uc_taxes/uc_taxes.module	2009-10-08 21:59:48 +0000
@@ -8,7 +8,7 @@
  * Allows tax rules to be set up and applied to orders.
  */
 
-require_once('uc_taxes.ca.inc');
+require_once(dirname(__FILE__) .'/uc_taxes.ca.inc');
 
 /******************************************************************************
  * Drupal Hooks                                                               *

