Index: /model/wpsg_product.class.php
===================================================================
--- /model/wpsg_product.class.php	(revision 7329)
+++ /model/wpsg_product.class.php	(revision 7330)
@@ -407,4 +407,7 @@
 		public function getPrice($product_key = false, $taxView = false, $amount = false, $weight = false, $scalePrice = true) {
 	
+			// AbwÃ€rtskompatibilitÃ€t, weil alte Produkttemplates die Funktion ohne Parameter aufrufen
+			if ($product_key === false && wpsg_isSizedString($GLOBALS['wpsg_sc']->view['data']['product_key'])) $product_key = $GLOBALS['wpsg_sc']->view['data']['product_key'];
+			
 			// Grundpreis aus dem Produkt
 			if ($this->shop->getBackendTaxview() === WPSG_BRUTTO) {
Index: /views/produkttemplates/standard_redirect.phtml
===================================================================
--- /views/produkttemplates/standard_redirect.phtml	(revision 7329)
+++ /views/produkttemplates/standard_redirect.phtml	(revision 7330)
@@ -89,9 +89,9 @@
 				
 				<?php $oldPrice = $this->view['oProduct']->getOldPrice();  ?>
-				<?php if ($oldPrice !== false && $oldPrice != $this->view['oProduct']->getPrice()) { ?>
-					<span class="wpsg_mod_productview_price wpsg_mod_productview_current"><?php echo wpsg_ff($this->view['oProduct']->getPrice(), $this->get_option('wpsg_currency')); ?></span>
+				<?php if ($oldPrice !== false && $oldPrice != $this->view['oProduct']->getPrice($this->view['data']['product_key'])) { ?>
+					<span class="wpsg_mod_productview_price wpsg_mod_productview_current"><?php echo wpsg_ff($this->view['oProduct']->getPrice($this->view['data']['product_key']), $this->get_option('wpsg_currency')); ?></span>
 					<span class="wpsg_mod_productview_oldprice"><?php echo wpsg_ff($oldPrice, $this->get_option('wpsg_currency')); ?></span>
 				<?php } else { ?>
-					<span class="wpsg_mod_productview_price"><?php echo wpsg_ff($this->view['oProduct']->getPrice(), $this->get_option('wpsg_currency')); ?></span>
+					<span class="wpsg_mod_productview_price"><?php echo wpsg_ff($this->view['oProduct']->getPrice($this->view['data']['product_key']), $this->get_option('wpsg_currency')); ?></span>
 				<?php } ?>
 			
