From 28d6023d77a9a8cbd91e37e05584b517094817f0 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 6 Feb 2015 17:24:28 +0000 Subject: [PATCH] log again not found template as error instead of poping up an alert --- etemplate/js/et2_core_xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/et2_core_xml.js b/etemplate/js/et2_core_xml.js index 425c011190..ffbdd727ae 100644 --- a/etemplate/js/et2_core_xml.js +++ b/etemplate/js/et2_core_xml.js @@ -53,7 +53,7 @@ function et2_loadXMLFromURL(_url, _callback, _context) _callback.call(_context, _data.documentElement); }, error: function(_xmlhttp, _err) { - alert('Loading eTemplate from '+_url+' failed! '+_err); + egw().debug('error', 'Loading eTemplate from '+_url+' failed! '+_xmlhttp.status+' '+_xmlhttp.statusText); } }); }