Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1696)
+++ branches/2.8.x/CHANGELOG	(revision 1697)
@@ -11,7 +11,11 @@
 ! = Update/Change
 ===============================================================================
 
-
+27 Aug-2012 Build 1697 Dietmar Woellbrink (Luisehahne)
+# Bugfixed issues whith storing text for Search function on WYSIWYG module.
+# Html tags where not filtered out.
+27 Aug-2012 Build 1696 Dietmar Woellbrink (Luisehahne)
+! move extra handling of menu links in index.php to the view.php of module menu links {Tks to NorHei)
 18 Aug-2012 Build 1695 Dietmar Woellbrink (Luisehahne)
 # fixed $install_tables in install/save.php 
 18 Aug-2012 Build 1694 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1696)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1697)
@@ -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', '1695');
+if(!defined('REVISION')) define('REVISION', '1697');
 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 1696)
+++ branches/2.8.x/wb/modules/wysiwyg/save.php	(revision 1697)
@@ -46,7 +46,7 @@
     $content = preg_replace($searchfor, '$1{SYSVAR:MEDIA_REL}$3', $content);
 	// searching in $text will be much easier this way
     $content = mysql_real_escape_string ($content);
-	$text = umlauts_to_entities($content, strtoupper(DEFAULT_CHARSET), 0);
+	$text = umlauts_to_entities(strip_tags($content), strtoupper(DEFAULT_CHARSET), 0);
 	$sql  = 'UPDATE `'.TABLE_PREFIX.'mod_wysiwyg` ';
 	$sql .= 'SET `content`=\''.$content.'\', `text`=\''.$text.'\' ';
 	$sql .= 'WHERE `section_id`='.(int)$section_id;
