Jörg Rade created CXF-6570:
------------------------------
Summary: FormattedServiceListWriter - meta http-equiv value not
quoted
Key: CXF-6570
URL: https://issues.apache.org/jira/browse/CXF-6570
Project: CXF
Issue Type: Bug
Components: Simple Frontend
Affects Versions: 3.1.2
Reporter: Jörg Rade
Priority: Minor
In
https://github.com/apache/cxf/blob/afd70f562f769c1f1ed26a275cbb3763b24cba43/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/servicelist/FormattedServiceListWriter.java
line 56
{code}
writer.write("<meta http-equiv=content-type content=\"text/html;
charset=UTF-8\">");
{code}
should be changed to
{code}
writer.write("<meta http-equiv=\"content-type\" content=\"text/html;
charset=UTF-8\">");
{code}
in oder to comply to http://www.w3schools.com/tags/att_meta_http_equiv.asp
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)