Reverted back to format() call in Story.format_filter (otherwise HTML structures in stories/comments will be compromised)
This commit is contained in:
parent
316da71c36
commit
78fb0eddfa
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue