fixed typo causing alert with "undefied" message, instead of an error

This commit is contained in:
Ralf Becker 2012-10-24 09:52:00 +00:00
parent a3983bc1bc
commit 79d2c8f8a1

View File

@ -354,7 +354,7 @@ function _egw_json_debug_log(_msg, _e)
/* Displays an json error message */
egw_json_request.prototype.jsonError = function(_msg, _e)
{
var msg = 'EGW JSON Error: '._msg;
var msg = 'EGW JSON Error: '+_msg;
//Log and show the error message
_egw_json_debug_log(msg, _e);