Index: shipping/shipping.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/shipping/shipping.module,v
retrieving revision 1.26
diff -u -r1.26 shipping.module
--- shipping/shipping.module	2 Oct 2005 06:24:39 -0000	1.26
+++ shipping/shipping.module	3 Oct 2005 22:19:05 -0000
@@ -74,7 +74,7 @@
 
     case 'send':
       $title = t('Message preview');
-      $output = shipping_preview_email(arg(4), 1);
+      $output = shipping_preview_email(arg(5), 1);
       break;
 
     case t('Send shipping notification'):
Index: store/store.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/store/store.module,v
retrieving revision 1.60
diff -u -r1.60 store.module
--- store/store.module	3 Oct 2005 21:54:09 -0000	1.60
+++ store/store.module	3 Oct 2005 22:19:08 -0000
@@ -1287,14 +1287,14 @@
           // invoiced = 2, shipped = 3
 
           $print_invoice = l(t('*print invoice'), "admin/store/transaction/print/$data->txnid&wf=2"). "<br />";
-          $ship_notify = l(t('*shipping notify'), "admin/store/shipping/send/$data->txnid&wf=3&destination=$destination");
+          $ship_notify = l(t('*shipping notify'), "admin/store/settings/shipping/send/$data->txnid&wf=3&destination=$destination");
 
           if ($data->$col == 2) {
             $print_invoice = l(t('print invoice'), "admin/store/transaction/print/$data->txnid"). "<br />";
           }
           elseif ($data->$col > 4) {
             $print_invoice = l(t('print invoice'), "admin/store/transaction/print/$data->txnid"). "<br />";
-            $ship_notify = l(t('shipping notify'), "admin/store/shipping/send/$data->txnid&destination=$destination");
+            $ship_notify = l(t('shipping notify'), "admin/store/settings/shipping/send/$data->txnid&destination=$destination");
           }
 
           $r[] = array('data' => l(transaction_get_workflow($data->$col), $edit_uri, array('title' => t('Click to adjust the transaction workflow.'))). "<br />&nbsp;&nbsp;$print_invoice&nbsp;&nbsp;$ship_notify", 'nowrap' => 'nowrap');
