Fix #field macro to comma separate multiple values

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1697802 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2015-08-26 01:30:51 +00:00
parent 4b2b6c5ca6
commit c018ffffea
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
#set($pad = " ... ")
#end
#else
#foreach($v in $doc.getFieldValues($f))$esc.html($v)#end
$esc.html($display.list($doc.getFieldValues($f), ", "))
#end
#end