[VIVO-1404] Disable XSS protection on the SPARQL query page

This commit is contained in:
Graham Triggs 2017-11-10 12:01:23 -05:00
parent f4c9d23af0
commit 0e15b9a69a

View file

@ -96,6 +96,7 @@ public class SparqlQueryController extends FreemarkerHttpServlet {
SimplePermission.USE_SPARQL_QUERY_PAGE.ACTION)) {
return;
}
resp.addHeader("X-XSS-Protection", "0");
if (req.getParameterMap().containsKey("query")) {
respondToQuery(req, resp);
} else {