diff --git a/Modules/Test/classes/tables/class.ilListOfQuestionsTableGUI.php b/Modules/Test/classes/tables/class.ilListOfQuestionsTableGUI.php index 42bdb80e5233..81ac48a3b53e 100644 --- a/Modules/Test/classes/tables/class.ilListOfQuestionsTableGUI.php +++ b/Modules/Test/classes/tables/class.ilListOfQuestionsTableGUI.php @@ -130,7 +130,15 @@ public function fillRow($data) if ($this->isShowMarkerEnabled()) { if ($data['marked']) { $this->tpl->setCurrentBlock('marked_img'); - $this->tpl->setVariable("HREF_MARKED", ilUtil::img('./templates/default/images/marked.svg', $this->lng->txt("tst_question_marked"), '24px', '24px')); + $this->tpl->setVariable( + "HREF_MARKED", + ilUtil::img( + ilUtil::getImagePath('marked.svg'), + $this->lng->txt("tst_question_marked"), + '24px', + '24px' + ) + ); $this->tpl->parseCurrentBlock(); } else { $this->tpl->touchBlock('marker');