gitweb: add type="text/css" to stylesheet link

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Jakub Narebski 2006-06-20 04:11:32 +00:00 коммит произвёл Junio C Hamano
Родитель 75c84ddb46
Коммит 7b6511a13f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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>