mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Removed space in XSS header because safari was getting angry
This commit is contained in:
parent
b3e0d8f675
commit
b60febeea2
|
@ -14,7 +14,7 @@ class XssProtectHeader
|
|||
*/
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
$mode = '1; mode=block';
|
||||
$mode = '1;mode=block';
|
||||
$response = $next($request);
|
||||
$response->headers->set('X-XSS-Protection', $mode);
|
||||
return $response;
|
||||
|
|
Loading…
Reference in a new issue