View Single Post
Old 10-16-2003, 09:39 AM   #25
Rolandks
Purple Mole
 
Rolandks's Avatar
 
Join Date: Sep 2003
Location: Kassel, Germany
Posts: 119
Quote:
Originally posted by manute
hey, this thread more and more looks like a discussion between me and myself... ;-)
Seems so
The following must work as possible solution:

Change ONLY this in robot_functions.php Line 160:
Code:
//replace any group of blank characters by an unique space
$text = ereg_replace("[[:blank:]]+"," ",strip_tags($text));
to
Code:
//replace any group of blank characters by
$text = preg_replace('/<.*>/U', '', $text);
It works with PHP 4.3.2 and PhpDig 1.6.2. NO html-comments are indexing !

-Roland-
Rolandks is offline   Reply With Quote