"fixed concatination of rtf files"

This commit is contained in:
Ralf Becker 2008-05-20 19:23:51 +00:00
parent 6c1dcb430d
commit 6abf7b87b0

View File

@ -250,14 +250,7 @@ class addressbook_merge // extends bo_merge
}
if ($contentrepeat)
{
$content = "";
foreach ($contentrep as $idrep => $repvalue)
{
$counter++;
$content .= $repvalue;
if (each($contentrep) != false && count($contentrep) !=1) $content .= "\par \page\pard\plain"; // page break
}
$content = $contentstart.$content.$contentend;
return $contentstart.implode('\\par \\page\\pard\\plain',$contentrep).$contentend;
}
return $content;
}