Index: lams_bb_integration/web/modules/preview.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_bb_integration/web/modules/Attic/preview.jsp,v diff -u -r1.4 -r1.5 --- lams_bb_integration/web/modules/preview.jsp 16 Feb 2014 17:30:09 -0000 1.4 +++ lams_bb_integration/web/modules/preview.jsp 25 Feb 2014 20:55:45 -0000 1.5 @@ -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");