Selaa lähdekoodia

Correctif "Failed to start the session"

develop
Guillaume Bourgeois 11 kuukautta sitten
vanhempi
commit
bdc6ba910d
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. +3
    -3
      EventListener/ExceptionListener.php

+ 3
- 3
EventListener/ExceptionListener.php Näytä tiedosto

@@ -20,8 +20,8 @@ class ExceptionListener
// You get the exception object from the received event
$exception = $event->getThrowable();

// On détecte une erreur interne (500), on remove les sessions qui servent de filtre dans l'admin
if ($exception instanceof HttpExceptionInterface != true) {
// On détecte une erreur interne (500), on remove les sessions qui servent de filtre dans l'admin
/*if ($exception instanceof HttpExceptionInterface != true) {
if (!headers_sent()) {
foreach ($this->session->all() as $key => $s) {
if (str_contains($key, "_filter")) {
@@ -29,6 +29,6 @@ class ExceptionListener
}
}
}
}
}*/
}
}

Loading…
Peruuta
Tallenna