*** search_1_97.pl Wed May 28 13:00:34 2003 --- search.pl Wed May 28 13:00:27 2003 *************** *** 210,215 **** --- 210,217 ---- foreach my $c (@comments) { my @tags = split(/(<.*?>)/is, $c); foreach my $part (@tags) { + $in_ignore = 1 if( $part =~ /$IGNORE_TEXT_START/ || $part =~ /$1<\/highlight>/igs; *************** *** 218,228 **** # now really highlight: $part =~ s/<highlight>($term)<\/highlight>/<span style="color:black;background:$color">$1<\/span>/igs; } - if( $part =~ /<title/i ) { - $in_ignore = 1; - } else { - $in_ignore = 0; - } $content_new .= $part; } } --- 220,225 ----