Jakub Narebski wrote: > --- a/gitweb/gitweb.cgi > +++ b/gitweb/gitweb.cgi > @@ -776,6 +776,7 @@ sub chop_str { > my $tail = $2; > if (length($tail) > 4) { > $tail = " ..."; > + $body =~ s/&[^;]$//; # remove chopped character entities > } > return "$body$tail"; > } Of course it should be + $body =~ s/&[^;]*$//; # remove chopped character entities -- Jakub Narebski Warsaw, Poland ShadeHawk on #git - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html