Improved AJAX error handling.

This commit is contained in:
Alex Tselegidis 2016-01-09 22:55:07 +01:00
parent a770a69660
commit e252307e66
2 changed files with 4 additions and 4 deletions

View File

@ -346,7 +346,7 @@ var GeneralFunctions = {
ajaxFailureHandler: function(jqxhr, textStatus, errorThrown) {
var exceptions = [
{
message: 'AJAX Error: ' + textStatus
message: 'AJAX Error: ' + errorThrown
}
];

View File

@ -61,12 +61,12 @@ if (defined('ENVIRONMENT'))
{
case 'development':
error_reporting(E_ALL);
break;
ini_set('display_errors', 1);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
break;
default:
exit('The application environment is not set correctly.');