Index: /changelog
===================================================================
--- /changelog	(revision 7681)
+++ /changelog	(revision 7686)
@@ -343,2 +343,3 @@
 - Bugfix: E-Mail in HTML Mail korrekt verlinkt
 - Bugfix: FÃŒllmengenpreisanzeige in ProduktÃŒbersichten korrigiert
+- Bugfix: DownloadProdukt erlaubt noch base64 kodierte Strings aufgrund von AbwÃ€rtskompatibilitÃ€t
Index: /mods/wpsg_mod_downloadprodukte.class.php
===================================================================
--- /mods/wpsg_mod_downloadprodukte.class.php	(revision 7681)
+++ /mods/wpsg_mod_downloadprodukte.class.php	(revision 7686)
@@ -536,5 +536,9 @@
 							$_file = $f;
 							
-							if ($_file == rawurldecode($_REQUEST['file']))
+							// The base64_decode is neccessary for backward compatibility of old links
+							$decoded_file = base64_decode($_REQUEST['file']);
+							if ($decoded_file === false) $decoded_file = rawurldecode($_REQUEST['file']);
+							
+							if ($_file == $decoded_file)
 							{
 								
