Added a doctype to the "about:" page

This commit is contained in:
Pierre Pronchery 2013-05-21 06:42:49 +02:00
parent 149fc40d26
commit 0fab7002d1

View File

@ -560,8 +560,9 @@ void ghtml_load_url(GtkWidget * widget, char const * url)
GHtml * ghtml;
char * p;
char * q = NULL;
const char about[] = "<html>\n<head><title>About " PACKAGE "</title>"
"</head>\n<body>\n<center>\n<h1>" PACKAGE " " VERSION "</h1>\n"
const char about[] = "<!DOCTYPE html>\n<html>\n"
"<head><title>About " PACKAGE "</title></head>\n"
"<body>\n<center>\n<h1>" PACKAGE " " VERSION "</h1>\n"
"<p>Copyright &copy; 2009-2013 Pierre Pronchery &lt;khorben@"
"defora.org&gt;</p>\n</center>\n</body>\n</html>";
#if WITH_INSPECTOR