Added error message if the json content got thrown away because there was javascript in it

This commit is contained in:
Andreas Stöckel 2010-06-29 12:58:55 +00:00
parent c30c4ce198
commit 6558a861a1

View File

@ -90,6 +90,10 @@ if (isset($_GET['menuaction']))
$json = new egw_json_request();
//Check whether the request data is set
if (isset($GLOBALS['egw_unset_vars']['_POST[json_data]']))
{
throw new egw_exception_assertion_failed("JSON Data contains script tags. Aborting...");
}
$json->parseRequest($_GET['menuaction'], (array)$_POST['json_data']);
common::egw_exit();
}