Browse Source

Merge branch 'develop'

master
Guillaume Bourgeois 11 months ago
parent
commit
80d3a0adf9
2 changed files with 3 additions and 5 deletions
  1. +0
    -2
      Definition/ApplicationDefinition.php
  2. +3
    -3
      EventListener/ExceptionListener.php

+ 0
- 2
Definition/ApplicationDefinition.php View File



namespace Lc\SovBundle\Definition; namespace Lc\SovBundle\Definition;


use App\Container\LoyaltyProgram\LoyaltyProgramChainingContainer;
use App\Container\Merchant\LeavePeriodContainer;
use Lc\SovBundle\Container\ComponentContainer; use Lc\SovBundle\Container\ComponentContainer;
use Lc\SovBundle\Container\File\FileContainer; use Lc\SovBundle\Container\File\FileContainer;
use Lc\SovBundle\Container\Newsletter\NewsletterContainer; use Lc\SovBundle\Container\Newsletter\NewsletterContainer;

+ 3
- 3
EventListener/ExceptionListener.php View File

// You get the exception object from the received event // You get the exception object from the received event
$exception = $event->getThrowable(); $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()) { if (!headers_sent()) {
foreach ($this->session->all() as $key => $s) { foreach ($this->session->all() as $key => $s) {
if (str_contains($key, "_filter")) { if (str_contains($key, "_filter")) {
} }
} }
} }
}
}*/
} }
} }

Loading…
Cancel
Save