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.51.2.18 -r1.51.2.19 --- lams_tool_scratchie/src/java/org/lamsfoundation/lams/tool/scratchie/service/ScratchieServiceImpl.java 8 Apr 2016 11:30:59 -0000 1.51.2.18 +++ lams_tool_scratchie/src/java/org/lamsfoundation/lams/tool/scratchie/service/ScratchieServiceImpl.java 30 Apr 2016 00:08:21 -0000 1.51.2.19 @@ -1349,9 +1349,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); @@ -1382,10 +1383,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