diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-15 16:04:56 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-15 16:04:56 -0300 |
commit | 14f136096ca28cba15da7521c798e27327f357d7 (patch) | |
tree | 986b4ccec042c21cf6dfdc04eb835c401415678d /src/nav.c | |
parent | 21ab6086012d25b3093b5da4407b9c8708ff416b (diff) |
Fixed handling of META's content-type with no MIME type (e.g. only charset).
e.g. some links at http://git.kernel.org/gitweb.cgi didn't render.
e.g. #2 This page didn't render:
<html>
<head>
<meta http-equiv="content-type" content="; charset=utf-8"/>
<title></title>
</head>
<body>
Generating....
</body>
</html>
Diffstat (limited to 'src/nav.c')
-rw-r--r-- | src/nav.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -368,7 +368,7 @@ static void Nav_repush(BrowserWindow *bw) static void Nav_repush_callback(void *data) { - _MSG(">>> Nav_repush_callback <<<<\n"); + _MSG(">>>> Nav_repush_callback <<<<\n"); Nav_repush(data); a_Timeout_remove(); } |