Fixed missing linebreaks in Story.format_filter() method to compensate previously removed call for global format() method

This commit is contained in:
Tobi Schäfer 2008-05-12 11:46:28 +00:00
parent aed81e62b1
commit c02f667a55

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);
return this.url_filter(value, param).replace(/\r\n|\n|\r/g, "<br >");
}
}
return String.EMTPY;