diff options
-rw-r--r-- | stagit-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stagit-index.c b/stagit-index.c index 1552f40..50fe19f 100644 --- a/stagit-index.c +++ b/stagit-index.c @@ -75,7 +75,7 @@ writeheader(FILE *fp) fputs("<!DOCTYPE html>\n" "<html dir=\"ltr\" lang=\"en\">\n<head>\n" "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n" - "<meta http-equiv=\"Content-Language\" content=\"en\" />\n<title>", fp); + "<title>", fp); xmlencode(fp, description, strlen(description)); fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath); fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath); |