Improved AJAX error handling.
This commit is contained in:
parent
a770a69660
commit
e252307e66
2 changed files with 4 additions and 4 deletions
|
@ -346,7 +346,7 @@ var GeneralFunctions = {
|
|||
ajaxFailureHandler: function(jqxhr, textStatus, errorThrown) {
|
||||
var exceptions = [
|
||||
{
|
||||
message: 'AJAX Error: ' + textStatus
|
||||
message: 'AJAX Error: ' + errorThrown
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
@ -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.');
|
||||
|
|
Loading…
Reference in a new issue