diff --git a/Modules/Blog/classes/class.ilObjBlogGUI.php b/Modules/Blog/classes/class.ilObjBlogGUI.php index 692578ed07cf..2e2b75e4f7a4 100644 --- a/Modules/Blog/classes/class.ilObjBlogGUI.php +++ b/Modules/Blog/classes/class.ilObjBlogGUI.php @@ -1485,6 +1485,7 @@ public function renderList(array $items, $a_cmd = "preview", $a_link_template = } else { $preview = $this->buildExportLink($a_link_template, "posting", $item["id"]); } + $more_link = $preview; // actions $posting_edit = $this->mayEditPosting($item["id"], $item["author"]); @@ -1513,6 +1514,7 @@ public function renderList(array $items, $a_cmd = "preview", $a_link_template = "edit", $ilCtrl->getLinkTargetByClass("ilblogpostinggui", "edit") ); + $more_link = $ilCtrl->getLinkTargetByClass("ilblogpostinggui", "edit"); // #11858 if ($is_active) { @@ -1630,7 +1632,7 @@ public function renderList(array $items, $a_cmd = "preview", $a_link_template = if ($snippet) { $wtpl->setCurrentBlock("more"); - $wtpl->setVariable("URL_MORE", $preview); + $wtpl->setVariable("URL_MORE", $more_link); $wtpl->setVariable("TEXT_MORE", $lng->txt("blog_list_more")); $wtpl->parseCurrentBlock(); }