Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2029)
+++ branches/2.8.x/CHANGELOG	(revision 2030)
@@ -11,6 +11,10 @@
 ! = Update/Change
 ===============================================================================
 
+14 Dec-2013 Build 2030 Dietmar Woellbrink (Luisehahne)
+! /install/index.php add query magic_quotes_gpc (has to be disables)
+! /install/save.php  set values for home_folders and page_languages to default false
+- remove 0 byte file in FCKeditor
 14 Dec-2013 Build 2029 Manuela v.d.Decken(DarkViper)
 ! initialize.php now blocking PHP-versions <5.3.2 and PHP with magic_quotes enabled
 ! droplets some new/recoded droplets added, some old ones removed
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2029)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2030)
@@ -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', '2029');
+if(!defined('REVISION')) define('REVISION', '2030');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/install/save.php
===================================================================
--- branches/2.8.x/wb/install/save.php	(revision 2029)
+++ branches/2.8.x/wb/install/save.php	(revision 2030)
@@ -490,7 +490,7 @@
 	     . '(\'default_date_format\', \'Y-m-d\'), '
 	     . '(\'default_time_format\', \'h:i A\'), '
 	     . '(\'redirect_timer\', \'1500\'), '
-	     . '(\'home_folders\', \'true\'), '
+	     . '(\'home_folders\', \'false\'), '
 	     . '(\'warn_page_leave\', \'1\'), '
 	     . '(\'default_template\', \'round\'), '
 	     . '(\'default_theme\', \'wb_theme\'), '
@@ -500,7 +500,7 @@
 	     . '(\'intro_page\', \'false\'), '
 	     . '(\'page_trash\', \'inline\'), '
 	     . '(\'homepage_redirection\', \'false\'), '
-	     . '(\'page_languages\', \'true\'), '
+	     . '(\'page_languages\', \'false\'), '
 	     . '(\'wysiwyg_editor\', \'fckeditor\'), '
 	     . '(\'manage_sections\', \'true\'), '
 	     . '(\'section_blocks\', \'false\'), '
Index: branches/2.8.x/wb/install/index.php
===================================================================
--- branches/2.8.x/wb/install/index.php	(revision 2029)
+++ branches/2.8.x/wb/install/index.php	(revision 2030)
@@ -69,6 +69,12 @@
 		$session_support = '<font class="bad">Disabled</font>';
 	}
 }
+$getMagicQuotesGpc = '<font class="good">Disabled</font>';
+if ( function_exists('get_magic_quotes_gpc')  && filter_var(strtolower(get_magic_quotes_gpc()), FILTER_VALIDATE_BOOLEAN ) ) {
+    $getMagicQuotesGpc = '<font class="bad">Enabled</font>';
+    $installFlag = false;
+}
+
 // Check if AddDefaultCharset is set
 $e_adc=false;
 $sapi=php_sapi_name();
@@ -97,18 +103,14 @@
 	$sConfigFile = $sWbPath.$sType.'.php';
 
 // config.php or config.php.new
-		if( (file_exists($sConfigFile)==true))
-		{
+		if ((file_exists($sConfigFile)==true)) {
 // next operation only if file is writeable
-			if(is_writeable($sConfigFile))
-			{
+			if (is_writeable($sConfigFile)) {
 // already installed? it's not empty
-				if ( filesize($sConfigFile) > 100)
-				{
+				if (filesize($sConfigFile) > 100) {
 					$config = '<font class="bad">Already installed? Check!</font>';
 // try to open and to write
-				} elseif( !$handle = fopen($sConfigFile, 'w') )
-				{
+				} elseif (!$handle = fopen($sConfigFile, 'w')) {
 					$config = '<font class="bad">Not Writeable</font>';
 				} else {
 					if (fwrite($handle, $sConfigContent) === FALSE) {
@@ -119,13 +121,12 @@
 					}
 					// Close file
 					fclose($handle);
-					}
+				}
 			} else {
 				$config = '<font class="bad">Not Writeable</font>';
 			}
 // it's config.php.new
-		} elseif((file_exists($sConfigFile.'.new')==true))
-		{
+		} elseif ((file_exists($sConfigFile.'.new')==true)) {
 			$config = '<font class="bad">Please rename to '.$sType.'.php</font>';
 		} else {
 			$config = '<font class="bad">Missing!!?</font>';
@@ -138,7 +139,6 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <title>WebsiteBaker Installation Wizard</title>
-<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
 <link href="stylesheet.css" rel="stylesheet" type="text/css" />
 <script type="text/javascript">
@@ -196,10 +196,10 @@
 		</tr>
 		<?php } ?>
 		<tr>
-			<td style="color: #666666;">PHP Version > 5.2.1</td>
+			<td style="color: #666666;">PHP Version 5.3.2 and up</td>
 			<td>
 				<?php
-			   if (version_compare(PHP_VERSION, '5.2.1', '>'))
+			   if (version_compare(PHP_VERSION, '5.3.2', '>='))
 			   {
 					?><font class="good">Yes</font><?php
 				} else {
@@ -213,12 +213,20 @@
 		</tr>
 	<tr>
 		<td style="color: #666666;">PHP Interface</td>
-			<td colspan="2">
+			<td>
 				<?php
 						?><font class="good">
 						<?php echo $sapi ?>
 						</font>
 			</td>
+		<td style="color: #666666;">magic_quotes_gpc</td>
+			<td >
+				<?php
+						?><font class="good">
+						<?php echo $getMagicQuotesGpc ?>
+						</font>
+			</td>
+
 		</tr>
 
 		<td style="color: #666666;">Server DefaultCharset</td>
