implemented table plugin for eroles - added bo class for eroles and moved corresponding methods from so to bo

This commit is contained in:
Christian Binder 2011-02-07 11:08:08 +00:00
parent 509306fcf8
commit 31a8c3b51c

View File

@ -381,7 +381,7 @@ abstract class bo_merge
$repeats = ''; $repeats = '';
if (isset($callback)) if (isset($callback))
{ {
for($n = 0; ($row_replacements = ExecMethod2($callback,$plugin,$id,$n)); ++$n) for($n = 0; ($row_replacements = $this->$callback($plugin,$id,$n,$repeat)); ++$n)
{ {
$repeats .= $this->replace($repeat,$row_replacements,$mimetype,$mso_application_progid); $repeats .= $this->replace($repeat,$row_replacements,$mimetype,$mso_application_progid);
} }