diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-06-20 04:11:32 +0000 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-19 21:16:09 -0700 |
commit | 7b6511a13f9913a7a54e76b18e21c2b2bfae18cf (patch) | |
tree | 0e0226bd5f8da562870135c8161f148dda601212 /gitweb | |
parent | 75c84ddb468a87006eaaa894cccf1a279a579406 (diff) | |
download | git-7b6511a13f9913a7a54e76b18e21c2b2bfae18cf.tar.gz git-7b6511a13f9913a7a54e76b18e21c2b2bfae18cf.tar.xz |
gitweb: add type="text/css" to stylesheet link
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi index fa90c51a4..d7da6368c 100755 --- a/gitweb/gitweb.cgi +++ b/gitweb/gitweb.cgi @@ -39,7 +39,7 @@ my $home_link = $my_uri; my $home_text = "indextext.html"; # URI of default stylesheet -my $stylesheet = "gitweb.css"; +my $stylesheet = "gitweb.css"; # source of projects list #my $projects_list = $projectroot; @@ -272,7 +272,7 @@ sub git_header_html { <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <meta name="robots" content="index, nofollow"/> -<link rel="stylesheet" href="$stylesheet"/> +<link rel="stylesheet" type="text/css" href="$stylesheet"/> <title>$title</title> $rss_link </head> |