From 07536cc001a45a7d3dfd861957e661a5a9c09897 Mon Sep 17 00:00:00 2001 From: Lukasz Anwajler Date: Mon, 6 Sep 2010 05:40:32 -0500 Subject: [PATCH 1/1] Forgotten change needed for better xml error display --- redakcja/static/js/wiki/view_editor_wysiwyg.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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); } }); -- 2.20.1