diff options
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc index a8d10a47..0007ea9f 100644 --- a/src/html.cc +++ b/src/html.cc @@ -2778,7 +2778,7 @@ static void Html_tag_open_meta(DilloHtml *html, const char *tag, int tagsize) /* Cannot ask cache whether the content type was changed, as * this code in another bw might have already changed it for us. */ - new_content = a_Capi_set_content_type(html->page_url, content); + new_content = a_Capi_set_content_type(html->page_url,content,"meta"); if (a_Misc_content_type_cmp(html->content_type, new_content)) { html->stop_parser = true; /* Avoid a race condition */ html->repush_after_head = true; |