I was experiencing an issue with the backspace=”n” param not being respected when iterating through the tagdata of a grid fieldtype.
I’ve resolved the issue by doing a substr() at the end of the Grid_parser’s parse() method.
// hack: backspace param fix
if(isset($params['backspace']) && $params['backspace'])
$grid_tagdata = substr($grid_tagdata, 0, (strlen($grid_tagdata)-$params['backspace']));More than anything, this post is meant to raise awareness, if there is in fact a bug here.
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.