I solved the problem with BOM

This commit is contained in:
Paula V. Quispe
2015-04-01 18:01:40 -04:00
parent 2ef493d4f0
commit d827d239a2
9 changed files with 9 additions and 9 deletions

View File

@@ -44,7 +44,7 @@ G::LoadSystem('inputfilter');
$filter = new InputFilter();
$_POST = $filter->xssFilterHard($_POST);
$_REQUEST = $filter->xssFilterHard($_REQUEST);
$_SESSION = $filter->xssFilterHard($_SESSION);
$_SESSION = $filter->xssFilterHard($_SESSION);
$actionAjax = isset( $_REQUEST['actionAjax'] ) ? $_REQUEST['actionAjax'] : null;