Index: lams_tool_scratchie/src/java/org/lamsfoundation/lams/tool/scratchie/service/ScratchieServiceImpl.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_scratchie/src/java/org/lamsfoundation/lams/tool/scratchie/service/ScratchieServiceImpl.java,v diff -u -r1.69 -r1.70 --- lams_tool_scratchie/src/java/org/lamsfoundation/lams/tool/scratchie/service/ScratchieServiceImpl.java 7 Apr 2016 18:33:58 -0000 1.69 +++ lams_tool_scratchie/src/java/org/lamsfoundation/lams/tool/scratchie/service/ScratchieServiceImpl.java 29 Apr 2016 04:11:29 -0000 1.70 @@ -1351,9 +1351,10 @@ } } - row = new ExcelCell[9 + (maxAnswers * 2)]; + row = new ExcelCell[10 + (maxAnswers * 2)]; columnCount = 0; row[columnCount++] = new ExcelCell(getMessage("label.student.name"), true); + row[columnCount++] = new ExcelCell(getMessage("label.student.username"), true); row[columnCount++] = new ExcelCell(getMessage("label.team"), true); row[columnCount++] = new ExcelCell(getMessage("label.question.number"), true); row[columnCount++] = new ExcelCell(getMessage("label.question"), true); @@ -1384,10 +1385,12 @@ int questionCount = 1; for (ScratchieItem item : summary.getItems()) { - row = new ExcelCell[9 + (maxAnswers * 2)]; + row = new ExcelCell[10 + (maxAnswers * 2)]; columnCount = 0; - // user name + // learner name row[columnCount++] = new ExcelCell(user.getFirstName() + " " + user.getLastName(), false); + // username + row[columnCount++] = new ExcelCell(user.getLoginName(), false); // group name row[columnCount++] = new ExcelCell(summary.getSessionName(), false); // question number