From cd8fa858527e96797ee55b1fbbc0468c30dff9c0 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Sun, 23 Apr 2023 11:32:50 +0200 Subject: [PATCH] remove all the magic --- src/Epc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Epc.php b/src/Epc.php index ea79d79..2c07a64 100644 --- a/src/Epc.php +++ b/src/Epc.php @@ -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); } }