gitweb: Change to use explicitly function call cgi->escapHTML()
[gitweb.git] / gitweb / gitweb.perl
index 653ca3cc60ef161f06bd3a6652eba7ad3453cc2e..3a564d1c482c53b07ed83e3baaca112aa7a8afd9 100755 (executable)
@@ -591,7 +591,7 @@ ($;%)
        my %opts = @_;
 
        $str = to_utf8($str);
-       $str = escapeHTML($str);
+       $str = $cgi->escapeHTML($str);
        if ($opts{'-nbsp'}) {
                $str =~ s/ / /g;
        }
@@ -605,7 +605,7 @@ sub esc_path {
        my %opts = @_;
 
        $str = to_utf8($str);
-       $str = escapeHTML($str);
+       $str = $cgi->escapeHTML($str);
        if ($opts{'-nbsp'}) {
                $str =~ s/ / /g;
        }