I'm trying to track down this error coming from the Chrome console, that occurred from switching from an Apache to an nginx server, using the same codebase .
Error parsing header X-XSS-Protection: 1; mode=block, 1; mode=block: expected semicolon at character position 14. The default protections will be applied.
According to this
SO thread, nginx might be sending once the header, and fatfree may be sending it a second time. Chrome then merges the two, producing the error.
I looked through the source code for header() calls, "XXS", "X-Content" but did not find anything suspicious. I'm at loss of idea.
Thank you !
Alexandre.