From 213a83b5194bc430578343142e8cde7a3cc96517 Mon Sep 17 00:00:00 2001 From: David M Date: Wed, 21 Feb 2007 19:43:44 +0000 Subject: [PATCH] #8254 git-svn-id: file:///svn/phpbb/trunk@7030 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d3638f1941..6d9623245a 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2132,7 +2132,7 @@ function bump_topic_allowed($forum_id, $topic_bumped, $last_post_time, $topic_po function get_context($text, $words, $length = 400) { // first replace all whitespaces with single spaces - $text = preg_replace('/\s+/u', ' ', $text); + $text = preg_replace('/ +/', ' ', strtr($text, "\t\n\r\x0C ", ' '), $text); $word_indizes = array(); if (sizeof($words))