remove all the magic

This commit is contained in:
Jean-Christian Paul Denis 2023-04-23 11:32:50 +02:00
parent 11b43e5c4e
commit cd8fa85852
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->getContent();
$content .= $comments->__call('getContent', null);
}
}