System log HTML - Meta charset

FrameXX

Well-known member
For first time I used the option to export system log to HTML and upon opening browser I noticed some special letters in my languages are all wrong.

After inspection I noticed a meta charset is missing in head. I added
HTML:
<meta charset="UTF-8">
to head and reloading the site showed up all characters right.

I am not sure, but I think UTF-8 is a modern standard and supports nearly any language. Some browsers automatically force UTF-8 if meta charset header is missing, but some don't need to, so I think it wouldn't be a bad idea to add this meta into head, while generating the html.
 
Top