Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 756)
+++ trunk/CHANGELOG	(revision 757)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.7.0 -------------------------------------
+17-Mar-2008 Thomas Hornik
+#	fixed an issue with utf8_check() (too slow with many ~100KB pages)
 15-Mar-2008 Thomas Hornik
 #	menulink: link can be menulink or subpage of menulink, too
 #	call_captcha: added parameter 'style', fixed some issue with parameter 'image' and text-style captchas
Index: trunk/wb/framework/functions-utf8.php
===================================================================
--- trunk/wb/framework/functions-utf8.php	(revision 756)
+++ trunk/wb/framework/functions-utf8.php	(revision 757)
@@ -1070,7 +1070,7 @@
  */
 function entities_to_umlauts2($string, $charset_out=DEFAULT_CHARSET) {
 	$string = charset_to_utf8($string, DEFAULT_CHARSET);
-	if(utf8_check($string))
+	//if(utf8_check($string)) // this is to much time-consuming
 		$string = utf8_to_charset($string, $charset_out);
 	return ($string);
 }
@@ -1092,7 +1092,7 @@
  */
 function umlauts_to_entities2($string, $charset_in=DEFAULT_CHARSET) {
 	$string = charset_to_utf8($string, $charset_in);
-	if(utf8_check($string))
+	//if(utf8_check($string)) // this is to much time-consuming
 		$string = utf8_umlauts_to_entities($string);
 	return($string);
 }
