Browse Source

Fix: Support for the standard mime.types map in gitweb

Temporary fix: commented out offending line in mimetype_guess.

Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Jakub Narebski 19 years ago committed by Junio C Hamano
parent
commit
57bd4d3523
  1. 2
      gitweb/gitweb.cgi

2
gitweb/gitweb.cgi

@ -1518,7 +1518,7 @@ sub mimetype_guess { @@ -1518,7 +1518,7 @@ sub mimetype_guess {

if ($mimetypes_file) {
my $file = $mimetypes_file;
$file =~ m#^/# or $file = "$projectroot/$path/$file";
#$file =~ m#^/# or $file = "$projectroot/$path/$file";
$mime = mimetype_guess_file($filename, $file);
}
$mime ||= mimetype_guess_file($filename, '/etc/mime.types');

Loading…
Cancel
Save