From 7b4134db37c1ada28eb1cef601ff9fcef7eb9a62 Mon Sep 17 00:00:00 2001 From: Max Goodman Date: Wed, 22 May 2013 23:36:44 -0700 Subject: [PATCH] Fix escaped entities in create multi invalid character errors. --- r2/r2/public/static/js/multi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/public/static/js/multi.js b/r2/r2/public/static/js/multi.js index 619266bb8..574f55642 100644 --- a/r2/r2/public/static/js/multi.js +++ b/r2/r2/public/static/js/multi.js @@ -478,7 +478,7 @@ r.multi.MultiCreateForm = Backbone.View.extend({ }, showError: function(error) { - this.$('.error').text(error).show() + this.$('.error').text(_.unescape(error)).show() }, focus: function() {