Index: views_handler_field_amazon_image.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/amazon/includes/views_handler_field_amazon_image.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 views_handler_field_amazon_image.inc
--- views_handler_field_amazon_image.inc	3 Dec 2010 03:31:09 -0000	1.1.2.5
+++ views_handler_field_amazon_image.inc	6 Jan 2011 01:03:16 -0000
@@ -76,7 +76,8 @@
       '#default_value' => !empty($this->options['link_format']) ? $this->options['link_format'] : 'plain',
     );
     if (module_exists('amazon_store')) {
-      $form['link_format']['#options']['amazon_store'] = t("A link to the product's Amazon Store page (Amazon Store Module)");
+      $_amazon_store_path = amazon_store_get_amazon_store_path();
+      $form['link_format']['#options'][$_amazon_store_path] = t("A link to the product's Amazon Store page (Amazon Store Module)");
     }
     $form['presentation_format'] = array(
       '#title' => t('Presentation format'),
@@ -119,7 +120,8 @@
         break;
       case 'amazon_store':
         $asin = $values->{$this->aliases['asin']};
-        return l($image, 'amazon_store/item/' . $asin, array('html' => TRUE));
+        $_amazon_store_path = amazon_store_get_amazon_store_path();
+        return l($image, $_amazon_store_path .'/item/' . $asin, array('html' => TRUE));
         break;
     }
   }
Index: views_handler_field_amazon_title.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/amazon/includes/views_handler_field_amazon_title.inc,v
retrieving revision 1.1.2.4
diff -u -r1.1.2.4 views_handler_field_amazon_title.inc
--- views_handler_field_amazon_title.inc	17 Oct 2010 00:46:18 -0000	1.1.2.4
+++ views_handler_field_amazon_title.inc	6 Jan 2011 01:04:19 -0000
@@ -36,7 +36,8 @@
       $form['link_format']['#options']['node'] = t('A link to the node the product is associated with');
     }
     if (module_exists('amazon_store')) {
-      $form['link_format']['#options']['amazon_store'] = t("A link to the product's Amazon Store page (Amazon Store Module)");
+      $_amazon_store_path = amazon_store_get_amazon_store_path();
+      $form['link_format']['#options'][$_amazon_store_path] = t("A link to the product's Amazon Store page (Amazon Store Module)");
     }
 
   }
@@ -55,7 +56,8 @@
         break;
       case 'amazon_store':
         $asin = $values->{$this->aliases['asin']};
-        return l($title, 'amazon_store/item/' . $asin, array('html' => TRUE));
+        $_amazon_store_path = amazon_store_get_amazon_store_path();
+        return l($title, $_amazon_store_path .'/item/' . $asin, array('html' => TRUE));
         break;
 
     }

