Browse Source

Merge pull request #40 from runejuhl/fix-truncatewords

Have truncatewords/2 ignore tuples (e.g. timestamp) and truncatewords/3 ...
Evan Miller 12 years ago
parent
commit
2f8504aaf9
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/erlydtl_filters.erl

+ 2 - 0
src/erlydtl_filters.erl

@@ -1041,6 +1041,8 @@ truncatechars(_Input, 0, Acc) ->
 truncatechars([C|Rest], CharsLeft, Acc) ->
     truncatechars(Rest, CharsLeft - 1, [C|Acc]).
 
+truncatewords(Value, _WordsLeft, _Acc) when is_atom(Value) ->
+    Value;
 truncatewords([], _WordsLeft, Acc) ->
     lists:reverse(Acc);
 truncatewords(_Input, 0, Acc) ->