Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1582)
+++ branches/2.8.x/CHANGELOG	(revision 1583)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 =========================== add small Features 2.8.2 ==========================
+19 Jan-2012 Build 1583 Dietmar Woellbrink (Luisehahne)
+! forgot upload save.php in wysiwyg module
 19 Jan-2012 Build 1582 Dietmar Woellbrink (Luisehahne)
 # wysiwyg module, fix issues with magic_quote_gpc if on
 # form module, fix regex for radio and checkbox (Tks to Ruud)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1582)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1583)
@@ -52,5 +52,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.2');
-if(!defined('REVISION')) define('REVISION', '1582');
+if(!defined('REVISION')) define('REVISION', '1583');
 if(!defined('SP')) define('SP', 'SP2');
Index: branches/2.8.x/wb/modules/wysiwyg/save.php
===================================================================
--- branches/2.8.x/wb/modules/wysiwyg/save.php	(revision 1582)
+++ branches/2.8.x/wb/modules/wysiwyg/save.php	(revision 1583)
@@ -38,6 +38,12 @@
 // Update the mod_wysiwygs table with the contents
 if(isset($_POST['content'.$section_id])) {
     $content = $_POST['content'.$section_id];
+	if(version_compare(PHP_VERSION, '5.3.0', '<'))
+	{
+		if(get_magic_quotes_gpc()) {
+			$content = $admin->strip_slashes($_POST['content'.$section_id]);
+		}
+	}
 	$searchfor = '@(<[^>]*=\s*")('.preg_quote($sMediaUrl).')([^">]*".*>)@siU';
     $content = preg_replace($searchfor, '$1{SYSVAR:MEDIA_REL}$3', $content);
 	// searching in $text will be much easier this way
