fix magic call argument

This commit is contained in:
Jean-Christian Paul Denis 2023-04-23 14:41:10 +02:00
parent 0deb24f093
commit 02f712560d
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -425,7 +425,7 @@ class Epc
while (dcCore::app()->ctx->__get('posts')?->fetch()) {
$comments = dcCore::app()->blog?->getComments(['post_id' => dcCore::app()->ctx->__get('posts')->f('post_id')]);
while ($comments?->fetch()) {
$content .= $comments->__call('getContent', null);
$content .= $comments->__call('getContent', []);
}
}