Broken param output for fields that store multiple values
Closed ticket reported by Alistair on 27 August 2009
# 122Closed Ticket: Broken param output for fields that store multiple values
Fixed a problem with Param Output. If a field returned an array from the call to Field::getParameterPoolValue(), the param value available to the XSLT would be an empty string. Closed by d287f766f125b7215460827e870d42db8b7ecc32
This issue is closed.
If a field returned an array from the call to Field::getParameterPoolValue(), the param value available to the XSLT would be an empty string.
E.G.
array( 0 => 123, 1 => 342 );would get nested inside another array when added to the param pool variable, and end up producing an empty string instead of ‘123, 342’
This was a particular problem for Select Box and Select Box Link fields that allow multiple selection.