Fixed order of filter methods applied by default in Story.format_filter()
This commit is contained in:
parent
d632daea69
commit
62b00107d5
1 changed files with 2 additions and 2 deletions
|
|
@ -434,8 +434,8 @@ Story.prototype.format_filter = function(value, param, mode) {
|
|||
break;
|
||||
|
||||
default:
|
||||
value = this.macro_filter(value, param);
|
||||
return format(this.url_filter(value, param));
|
||||
value = this.macro_filter(format(value), param);
|
||||
return this.url_filter(value, param);
|
||||
}
|
||||
}
|
||||
return String.EMTPY;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue