mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Fixed typo (thanks @ssddanbrown)
This commit is contained in:
parent
ef6eea67d8
commit
d184da8611
|
@ -16,9 +16,9 @@ class PreventBackHistory
|
||||||
public function handle($request, Closure $next)
|
public function handle($request, Closure $next)
|
||||||
{
|
{
|
||||||
$headers = [
|
$headers = [
|
||||||
'Cache-Control' => 'nocache, no-store, max-age=0, must-revalidate',
|
'Cache-Control' => 'no-cache, no-store, max-age=0, must-revalidate',
|
||||||
'Pragma' => 'no-cache',
|
'Pragma' => 'no-cache',
|
||||||
'Expires' => 'Sun, 02 Jan 1990 00:00:00 GMT'
|
'Expires' => 'Sun, 02 Jan 1990 00:00:00 GMT'
|
||||||
];
|
];
|
||||||
$response = $next($request);
|
$response = $next($request);
|
||||||
foreach($headers as $key => $value) {
|
foreach($headers as $key => $value) {
|
||||||
|
|
Loading…
Reference in a new issue