From 4f73d4a41afe53a3018ac1f6f49c0c96daa56bfd Mon Sep 17 00:00:00 2001 From: iszmais Date: Mon, 1 Jul 2024 18:30:35 +0200 Subject: [PATCH] Fix function call for comments rendering on records --- .../classes/DetailedView/class.ilDclDetailedViewGUI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ILIAS/DataCollection/classes/DetailedView/class.ilDclDetailedViewGUI.php b/components/ILIAS/DataCollection/classes/DetailedView/class.ilDclDetailedViewGUI.php index b1675424727d..dd9ae650f2f0 100755 --- a/components/ILIAS/DataCollection/classes/DetailedView/class.ilDclDetailedViewGUI.php +++ b/components/ILIAS/DataCollection/classes/DetailedView/class.ilDclDetailedViewGUI.php @@ -313,7 +313,7 @@ public function doExtReplace(array $found): ?string protected function renderComments(bool $edit = false): string { if (!$edit) { - return $this->notesGUI->getCommentsHTML(); + return $this->notesGUI->getListHTML(); } else { return $this->notesGUI->editNoteForm(); }