fix superfluous nl2br

This commit is contained in:
mappu 2017-02-05 15:58:19 +13:00
parent d0d52e931e
commit d0219cb16a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ var linkify = function(str) {
};
var sanitise = function(s) {
return linkify(nl2br(hesc(s)));
return linkify(hesc(s));
};
var toggle = function($el) {