diff --git a/src/main/java/org/olat/repository/ui/RepositoryEntryRuntimeController.java b/src/main/java/org/olat/repository/ui/RepositoryEntryRuntimeController.java
index 6f0095e68a4c4d5876b55f681eefd55abc59842c..da5bdf079f1f884495de2602953e4ae487436942 100644
--- a/src/main/java/org/olat/repository/ui/RepositoryEntryRuntimeController.java
+++ b/src/main/java/org/olat/repository/ui/RepositoryEntryRuntimeController.java
@@ -718,7 +718,9 @@ public class RepositoryEntryRuntimeController extends MainLayoutBasicController
 	
 	protected void doDetails(UserRequest ureq) {
 		WindowControl bwControl = getSubWindowControl("Infos");
-		RepositoryEntryDetailsController ctrl = new RepositoryEntryDetailsController(ureq, addToHistory(ureq, bwControl), re, true);
+		
+		RepositoryEntry entry = loadRepositoryEntry();
+		RepositoryEntryDetailsController ctrl = new RepositoryEntryDetailsController(ureq, addToHistory(ureq, bwControl), entry, true);
 		listenTo(ctrl);
 		detailsCtrl = pushController(ureq, translate("details.header"), ctrl);
 		currentToolCtr = detailsCtrl;