Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1614)
+++ branches/2.8.x/CHANGELOG	(revision 1615)
@@ -11,6 +11,11 @@
 ! = Update/Change
 ===============================================================================
 
+18 Feb-2012 Build 1615 Dietmar Woellbrink (Luisehahne)
++ Validationfix, add qx_rawlang.php in quickSkin_alpha to solve
+  <a> escaping malformed URI reference messages in javascript
+! fixed magic_quotes_gpc=on, magic_quotes going to be removed in PHP6.
+  and some hoster do not set it to off  
 18 Feb-2012 Build 1614 Dietmar Woellbrink (Luisehahne)
 # fixed tabindex in installer (Tks to Easyuser)
 # fixed installer call in /admin/index.php
Index: branches/2.8.x/wb/include/quickSkin_alpha/_lib/qx/qx_rawlang.php
===================================================================
--- branches/2.8.x/wb/include/quickSkin_alpha/_lib/qx/qx_rawlang.php	(nonexistent)
+++ branches/2.8.x/wb/include/quickSkin_alpha/_lib/qx/qx_rawlang.php	(revision 1615)
@@ -0,0 +1,13 @@
+<?php
+
+function qx_rawlang($var) {
+	$retval = '{'.$var.'}';
+	$arr = explode('_', $var);
+	$var0 = array_shift($arr);
+	while( sizeof($arr) > 0 ) {
+		$var1 = implode('_', $arr);
+		$retval = ( isset($GLOBALS[$var0][$var1]) ? $GLOBALS[$var0][$var1] : $retval );
+		$var0 .= '_'.array_shift($arr);
+	}
+	return rawurlencode ($retval);
+}

Property changes on: branches/2.8.x/wb/include/quickSkin_alpha/_lib/qx/qx_rawlang.php
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision HeadURL
\ No newline at end of property
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1614)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1615)
@@ -51,5 +51,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.3');
-if(!defined('REVISION')) define('REVISION', '1614');
+if(!defined('REVISION')) define('REVISION', '1615');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/wysiwyg/save.php
===================================================================
--- branches/2.8.x/wb/modules/wysiwyg/save.php	(revision 1614)
+++ branches/2.8.x/wb/modules/wysiwyg/save.php	(revision 1615)
@@ -38,7 +38,7 @@
 // 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(ini_get('magic_quotes_gpc')==true)
 	{
 		$content = $admin->strip_slashes($_POST['content'.$section_id]);
 	}
