Index: lams_bb_integration/web/modules/learnermonitor.jsp
===================================================================
diff -u -r69267e8dd91e545a900666caa670083724fd5668 -r28579b7b32e5be02c53f9b61c398dc61a9bfd81d
--- lams_bb_integration/web/modules/learnermonitor.jsp (.../learnermonitor.jsp) (revision 69267e8dd91e545a900666caa670083724fd5668)
+++ lams_bb_integration/web/modules/learnermonitor.jsp (.../learnermonitor.jsp) (revision 28579b7b32e5be02c53f9b61c398dc61a9bfd81d)
@@ -122,6 +122,7 @@
String title = "";
String description = "";
String strLineitemId = null;
+ String position = "unknown";
//contentId is available in versions after 1.2.3
if (contentIdStr != null) {
@@ -131,6 +132,7 @@
Content courseDoc = (Content)courseDocumentLoader.loadById( contentId );
title = courseDoc.getTitle();
description = courseDoc.getBody().getFormattedText();
+ position = String.valueOf(courseDoc.getPosition());
//get lineitemid from the storage (bbContentId -> lineitemid)
PortalExtraInfo pei = PortalUtil.loadPortalExtraInfo(null, null, "LamsLineitemStorage");
@@ -199,6 +201,8 @@