From: Lukasz Anwajler Date: Mon, 6 Sep 2010 10:40:32 +0000 (-0500) Subject: Forgotten change needed for better xml error display X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/07536cc001a45a7d3dfd861957e661a5a9c09897 Forgotten change needed for better xml error display --- diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index 19869847..ad48a21c 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -487,12 +487,7 @@ _finalize(success); }, error: function(text){ - /* only basic error message */ - var errorArray = text.split("\n"); - if (errorArray.length >= 3) { - text = errorArray[2].split(":")[0]; - } - $('#html-view').html('

Wystąpił błąd: '+ text + '

'); + $('#html-view').html('

Wystąpił błąd:

'+text+'
'); _finalize(failure); } });