Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 569)
+++ trunk/CHANGELOG	(revision 570)
@@ -13,10 +13,12 @@
 ------------------------------------- 2.7.0 -------------------------------------
 
 19-Jan-2008 Christian Sommer
+!	Reduced the success time out and set WYSIWSY background to white
+#	Fixed some errors in form module (only in conjunction with E_ALL)
 !	Added support to configure the mailer settings via the backend
 19-Jan-2008 Matthias Gallas
 #	Fixed bug in news modul with missing variable PAGE_DIRECTORY
-19-Jan-2008 Thomas Hornik
+19-Jan-2008 Thomas Hornik
 # Module code: curly backets get deleted by pparse() from phplib. fixed
 +	Module menu_link: added dropdown-listbox to select anchor
 !	upgrade-script: added code to convert old menu_links to new ones (partly)
Index: trunk/wb/admin/interface/success.html
===================================================================
--- trunk/wb/admin/interface/success.html	(revision 569)
+++ trunk/wb/admin/interface/success.html	(revision 570)
@@ -4,7 +4,7 @@
 	{MESSAGE}
 	
 	<script language="javascript" type="text/javascript">
-		setTimeout("location.href='{REDIRECT}'", 2000);
+		setTimeout("location.href='{REDIRECT}'", 500);
 	</script>
 	
 	<noscript>
Index: trunk/wb/modules/form/view.php
===================================================================
--- trunk/wb/modules/form/view.php	(revision 569)
+++ trunk/wb/modules/form/view.php	(revision 570)
@@ -32,14 +32,15 @@
 if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
 
 // check if frontend.css file needs to be included into the <body></body> of view.php
-if((!function_exists('register_frontend_modfiles') || !defined('MOD_FRONTEND_CSS_REGISTERED')) &&  file_exists(WB_PATH .'/modules/form/frontend.css')) {
-   echo '<style type="text/css">';
-   include(WB_PATH .'/modules/form/frontend.css');
-   echo "\n</style>\n";
+if((!function_exists('register_frontend_modfiles') || !defined('MOD_FRONTEND_CSS_REGISTERED')) &&  
+	file_exists(WB_PATH .'/modules/form/frontend.css')) {
+	echo '<style type="text/css">';
+	include(WB_PATH .'/modules/form/frontend.css');
+	echo "\n</style>\n";
 } 
 
 // Function for generating an optionsfor a select field
-if (!function_exists(make_option)) {
+if (!function_exists('make_option')) {
 function make_option(&$n) {
 	// start option group if it exists
 	if (substr($n,0,2) == '[=') {
@@ -52,7 +53,7 @@
 }
 }
 // Function for generating a checkbox
-if (!function_exists(make_checkbox)) {
+if (!function_exists('make_checkbox')) {
 function make_checkbox(&$n, $idx, $params) {
 	$field_id = $params[0];
 	$seperator = $params[1];
@@ -61,7 +62,7 @@
 }
 }
 // Function for generating a radio button
-if (!function_exists(make_radio)) {
+if (!function_exists('make_radio')) {
 function make_radio(&$n, $idx, $params) {
 	$field_id = $params[0];
 	$group = $params[1];
Index: trunk/wb/modules/fckeditor/wb_config/wb_fckeditorarea.css
===================================================================
--- trunk/wb/modules/fckeditor/wb_config/wb_fckeditorarea.css	(revision 569)
+++ trunk/wb/modules/fckeditor/wb_config/wb_fckeditorarea.css	(revision 570)
@@ -14,7 +14,7 @@
 body {
   font-family:Verdana,Helvetica, Arial, sans-serif;
   font-size:small;
-  background-color: #FFFFE0;
+  background-color: #FFF;
   padding: 5px 5px 5px 5px;
   margin: 0px;
 }
