Index: lams_bb_integration/web/modules/preview.jsp =================================================================== diff -u -r780957f27df870898ade718ccdacd93d5dfadbd7 -re145b2587e58d80c54fb208848e06d290c5473cd --- lams_bb_integration/web/modules/preview.jsp (.../preview.jsp) (revision 780957f27df870898ade718ccdacd93d5dfadbd7) +++ lams_bb_integration/web/modules/preview.jsp (.../preview.jsp) (revision e145b2587e58d80c54fb208848e06d290c5473cd) @@ -51,15 +51,13 @@ // Get the form parameters and convert into correct data types String strTitle = request.getParameter("title").trim(); - String strDescription = request.getParameter("description").trim(); - FormattedText description = new FormattedText(strDescription, FormattedText.Type.HTML); String strLdId = request.getParameter("ldId").trim(); long ldId = Long.parseLong(strLdId); // Start the Lesson for preview in LAMS (via Webservices) // Capture the lesson ID - Long lsId = LamsSecurityUtil.startLesson(ctx, ldId, strTitle, strDescription, true); + Long lsId = LamsSecurityUtil.startLesson(ctx, ldId, strTitle, "", true); //error checking if (lsId == -1) { response.sendRedirect("lamsServerDown.jsp");