Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1301)
+++ branches/2.8.x/CHANGELOG	(revision 1302)
@@ -12,6 +12,10 @@
 
 ------------------------------------- 2.8.1 -------------------------------------
 07-Mar-2010 Dietmar Woellbrink (Luisehahne)
+#	fixed search_modext.php ( Tks to Thorn )
+#	Ticket #953 is already fixed 
+#	Ticket #954 styles issues in theme.css ( Tks to Ruebenwurzel )
+07-Mar-2010 Dietmar Woellbrink (Luisehahne)
 #	Tickets #932 change deprecated eregi functions 
 #	Tickets #948 fixed Multiple use of same parametrised droplet - parameter handling
 !	Upgrade Droplets to Version 1.0.3
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1301)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1302)
@@ -52,6 +52,6 @@
 
 // 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.x');
-if(!defined('REVISION')) define('REVISION', '1300');
+if(!defined('REVISION')) define('REVISION', '1302');
 
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/theme.css	(revision 1301)
+++ branches/2.8.x/wb/templates/classic_theme/theme.css	(revision 1302)
@@ -65,8 +65,8 @@
 .header_list_block { width: 180px; text-align: left; }
 .header_list_sections_actions { width: 30px; text-align: left; }
 #multi_lingual { font-weight: bolder; }
-.right{ float: right; }
-.left{ float: left; }
+.right{ text-align: right; }
+.left{ text-align: left; }
 .pages_list table td, table.pages_view td { padding: 3px; }
 .save, .reset, .input_narrow { width: 100px; }
 .settings_table td, .tool_table td { text-align: left; vertical-align: top; }
Index: branches/2.8.x/wb/templates/wb_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/theme.css	(revision 1301)
+++ branches/2.8.x/wb/templates/wb_theme/theme.css	(revision 1302)
@@ -79,5 +79,5 @@
 .form_submit .left, .header_list_menu_title, .list_menu_title, .header_list_type { text-align: left; }
 .header_title, .sections_list table, .setting_value input, .setting_value select, .setting_value textarea, .value_input input, .value_input text, .value_input select, .form_submit, .input_full { width: 100%; }
 .header_list_pubdate_start, .header_list_pubdate_end, .list_pubdate_start, .list_pubdate_end { width: 200px; text-align: left; }
-.right{ float: right; }
-.left{ float: left; }
\ No newline at end of file
+.right{ text-align: right; }
+.left{ text-align: left;  }
\ No newline at end of file
Index: branches/2.8.x/wb/templates/argos_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/theme.css	(revision 1301)
+++ branches/2.8.x/wb/templates/argos_theme/theme.css	(revision 1302)
@@ -137,5 +137,5 @@
 .list_page_code { width: 240px; }
 .list_page_language { width: 240px; }
 #multi_lingual { font-weight: bolder; }
-.right{ float: right; }
-.left{ float: left; }
\ No newline at end of file
+.right{ text-align: right; }
+.left{ text-align: left; }
\ No newline at end of file
Index: branches/2.8.x/wb/search/search_modext.php
===================================================================
--- branches/2.8.x/wb/search/search_modext.php	(revision 1301)
+++ branches/2.8.x/wb/search/search_modext.php	(revision 1302)
@@ -298,7 +298,7 @@
 	// clean the text:
 	$mod_text = preg_replace('#<(!--.*--|style.*</style|script.*</script)>#iU', ' ', $mod_text);
 	$mod_text = preg_replace('#<(br( /)?|dt|/dd|/?(h[1-6]|tr|table|p|li|ul|pre|code|div|hr))[^>]*>#i', '.', $mod_text);
-	$mod_text = preg_replace('/(\v\s?|\s\s)+/', ' ', $mod_text);
+	// $mod_text = preg_replace('/(\v\s?|\s\s)+/', ' ', $mod_text);
 	$mod_text = preg_replace('/\s\./', '.', $mod_text);
 	if($mod_ext_charset!='') { // data from external database may have a different charset
 		require_once(WB_PATH.'/framework/functions-utf8.php');
