BUG 10550 After the session has expired the filters do not work SOLVED
- Missing validation when session is expired - Add validation when session is expired
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
<?php
|
||||
if (!isset($_SESSION['USER_LOGGED'])) {
|
||||
$result = new stdclass();
|
||||
$result->error = G::LoadTranslation('ID_LOGIN_AGAIN');
|
||||
die(G::json_encode($result));
|
||||
}
|
||||
|
||||
//Getting the extJs parameters
|
||||
$callback = isset( $_POST["callback"] ) ? $_POST["callback"] : "stcCallback1001";
|
||||
$dir = isset( $_POST["dir"] ) ? $_POST["dir"] : "DESC";
|
||||
|
||||
Reference in New Issue
Block a user