Fixes the title attribute in <span title="Jürgen Kreileder">Jürgen Kreileder</span> for example because to_utf8() is called implicitly now. (Not sure why the attribute is there at all in the example. From my point of view nothing got chopped.) Signed-off-by: Juergen Kreileder <jk@xxxxxxxxxxxx> --- gitweb/gitweb.perl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 4f0c3bd..fd76407 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1699,7 +1699,7 @@ sub chop_and_escape_str { return esc_html($chopped); } else { $str =~ s/[[:cntrl:]]/?/g; - return $cgi->span({-title=>$str}, esc_html($chopped)); + return $cgi->span({-title => esc_attr($str)}, esc_html($chopped)); } } -- 1.7.5.4 -- To unsubscribe from this list: 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