Fix 'Undefined variable' in purge page

This commit is contained in:
Olivier PEREZ 2015-04-23 23:26:30 +02:00
parent 551b839292
commit 7c265c57d2
1 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
*/
use Framadate\Services\InputService;
use Framadate\Services\LogService;
use Framadate\Services\PurgeService;
use Framadate\Services\SecurityService;
@ -36,11 +37,12 @@ $message = null;
$logService = new LogService();
$purgeService = new PurgeService($connect, $logService);
$securityService = new SecurityService();
$inputService = new InputService();
/* POST */
/*-----*/
$action = $inputService->filterName($_POST['action']);
$action = $inputService->filterName(isset($_POST['action']) ? $_POST['action'] : null);
/* PAGE */
/* ---- */