Index: /views/mods/mod_prepayment/order_done.phtml
===================================================================
--- /views/mods/mod_prepayment/order_done.phtml	(revision 6661)
+++ /views/mods/mod_prepayment/order_done.phtml	(revision 6664)
@@ -16,2 +16,17 @@
 <br /><br />
 <?php echo wpsg_translate(__('Bitte als Betreff angeben: "#1#"', 'wpsg'), $this->view['wpsg_mod_prepayment']['subject']); ?>
+
+<?php if (isset($this->view['wpsg_mod_prepayment']['subject'])) { ?>
+	<p><?php echo __('Wenn Ihre Banking-App Girocode unterstÃŒtzt, kÃ¶nnen Sie diesen QRCode scannen.', 'wpsg'); ?></p>
+	<?php 
+		require_once WPSG_PATH_LIB.'phpgirocode.class.php';
+		
+		$img = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'],
+			$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_BASE64));
+	?>
+	<img src="data:image/gif;base64,<?php echo $img; ?>" alt="" />
+		
+  	<pre style="display:none;"><?php 	echo $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'],
+  			$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_TEST));
+	?></pre>
+<?php } ?>
Index: /views/warenkorb/done.phtml
===================================================================
--- /views/warenkorb/done.phtml	(revision 6661)
+++ /views/warenkorb/done.phtml	(revision 6664)
@@ -46,18 +46,3 @@
 	<div class="wpsg_clear"></div>
 	
-	<?php if (isset($this->view['wpsg_mod_prepayment']['subject'])) { ?>
-		<p><?php echo __('Wenn Ihre Banking-App Girocode unterstÃŒtzt, kÃ¶nnen Sie diesen QRCode scannen.', 'wpsg'); ?></p>
-		<?php 
-		require_once WPSG_PATH_LIB.'phpgirocode.class.php';
-		
-		$img = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'],
-				$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_BASE64));
-		?>
-		<img src="data:image/gif;base64,<?php echo $img; ?>" alt="" />
-		
-	  	<pre style="display:none;"><?php 	echo $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'],
-	  			$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_TEST));
-	  	?></pre>
-	<?php } ?>
-	
 </div>
