Reverted back to format() call in Story.format_filter (otherwise HTML structures in stories/comments will be compromised)

This commit is contained in:
Tobi Schäfer 2008-05-12 13:05:18 +00:00
parent 316da71c36
commit 78fb0eddfa

View file

@ -436,7 +436,7 @@ Story.prototype.format_filter = function(value, param, mode) {
default:
value = this.macro_filter(value, param);
return this.url_filter(value, param).replace(/\r\n|\n|\r/g, "<br >");
return format(this.url_filter(value, param));
}
}
return String.EMTPY;