Fixed missing linebreaks in Story.format_filter() method to compensate previously removed call for global format() method
This commit is contained in:
parent
aed81e62b1
commit
c02f667a55
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);
|
||||
return this.url_filter(value, param).replace(/\r\n|\n|\r/g, "<br >");
|
||||
}
|
||||
}
|
||||
return String.EMTPY;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue