Fix label merge

Accidentally broken by SVN r54894
This commit is contained in:
Nathan Gray 2016-02-29 16:49:44 +00:00
parent f3cad0c95f
commit 86d1cf4511

View File

@ -850,7 +850,14 @@ abstract class bo_merge
{
$content = preg_replace('/\$\$[a-z0-9_\/]+\$\$/i','',$content);
}
if ($contentrepeat) fwrite($content_stream, ($n == 0 ? '' : $joiner) . $content);
if ($contentrepeat)
{
fwrite($content_stream, ($n == 0 ? '' : $joiner) . $content);
}
if($lableprint)
{
$contentrep[is_array($id) ? implode(':',$id) : $id] = $content;
}
}
if ($Labelrepeat)
{