Forgotten change needed for better xml error display
authorLukasz Anwajler <lukasz@anwajler.com>
Mon, 6 Sep 2010 10:40:32 +0000 (05:40 -0500)
committerLukasz Anwajler <lukasz@anwajler.com>
Mon, 6 Sep 2010 10:40:32 +0000 (05:40 -0500)
redakcja/static/js/wiki/view_editor_wysiwyg.js

index 1986984..ad48a21 100644 (file)
                 _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('<p class="error">Wystąpił błąd: '+ text + '</p>');
+                $('#html-view').html('<p class="error">Wystąpił błąd:</p><pre>'+text+'</pre>');
                 _finalize(failure);
             }
         });