Index: lams_admin/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_admin/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_admin/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_central/src/java/org/lamsfoundation/lams/web/outcome/OutcomeController.java =================================================================== diff -u -r50f84b60c632e10ccc6981f1ce142e28b23eb44c -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_central/src/java/org/lamsfoundation/lams/web/outcome/OutcomeController.java (.../OutcomeController.java) (revision 50f84b60c632e10ccc6981f1ce142e28b23eb44c) +++ lams_central/src/java/org/lamsfoundation/lams/web/outcome/OutcomeController.java (.../OutcomeController.java) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -212,7 +212,7 @@ ObjectNode outcomeJSON = JsonNodeFactory.instance.objectNode(); outcomeJSON.put("value", outcome.getOutcomeId()); outcomeJSON.put("label", - outcome.getName() + (StringUtils.isBlank(outcome.getCode()) ? "" : " (" + outcome.getCode() + ")")); + outcome.getName() + (StringUtils.isBlank(outcome.getCode()) ? "" : " [" + outcome.getCode() + "]")); responseJSON.add(outcomeJSON); } responseJSON.add(search); @@ -297,7 +297,7 @@ outcomeJSON.put("outcomeId", outcome.getOutcomeId()); outcomeJSON.put("qbMapping", outcomeMapping.getQbQuestionId() != null); outcomeJSON.put("label", - outcome.getName() + (StringUtils.isBlank(outcome.getCode()) ? "" : " (" + outcome.getCode() + ")")); + outcome.getName() + (StringUtils.isBlank(outcome.getCode()) ? "" : " [" + outcome.getCode() + "]")); responseJSON.add(outcomeJSON); } Index: lams_central/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_central/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_central/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_common/src/java/org/lamsfoundation/lams/outcome/service/OutcomeService.java =================================================================== diff -u -r50f84b60c632e10ccc6981f1ce142e28b23eb44c -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_common/src/java/org/lamsfoundation/lams/outcome/service/OutcomeService.java (.../OutcomeService.java) (revision 50f84b60c632e10ccc6981f1ce142e28b23eb44c) +++ lams_common/src/java/org/lamsfoundation/lams/outcome/service/OutcomeService.java (.../OutcomeService.java) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -292,10 +292,10 @@ // create a new outcome on the fly String code = null; // check if name contains code part - String[] nameParts = name.split("\\("); + String[] nameParts = name.split("\\["); if (nameParts.length > 1) { name = nameParts[0].trim(); - code = nameParts[1].replaceFirst("\\)", "").trim(); + code = nameParts[1].replaceFirst("\\]", "").trim(); } Outcome outcome = new Outcome(); Index: lams_gradebook/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_gradebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_gradebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_learning/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_learning/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_learning/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_monitoring/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_monitoring/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_monitoring/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_assessment/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_assessment/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_assessment/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_chat/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_chat/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_chat/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_daco/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_daco/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_daco/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_doku/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_doku/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_doku/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_forum/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_forum/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_forum/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_gmap/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_gmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_gmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_images/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_images/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_images/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_imscc/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_imscc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_imscc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_lamc/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_lamc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_lamc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_laqa/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_laqa/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_laqa/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_larsrc/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_larsrc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_larsrc/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_leader/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_leader/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_leader/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_mindmap/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_mindmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_mindmap/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_nb/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_nb/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_nb/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_notebook/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_notebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_notebook/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_pixlr/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_pixlr/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_pixlr/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_preview/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_preview/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_preview/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_sbmt/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_sbmt/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_sbmt/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_scratchie/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_scratchie/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_scratchie/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_scribe/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_scribe/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_scribe/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_spreadsheet/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_spreadsheet/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_spreadsheet/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_survey/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_survey/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_survey/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_task/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_task/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_task/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_vote/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_vote/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_vote/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_whiteboard/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r90e5fd15f6474eb56d0b497d1b73e14bda75e262 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_whiteboard/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 90e5fd15f6474eb56d0b497d1b73e14bda75e262) +++ lams_tool_whiteboard/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_wiki/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_wiki/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_wiki/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_tool_zoom/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_tool_zoom/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_tool_zoom/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; } Index: lams_www/web/WEB-INF/tags/OutcomeAuthor.tag =================================================================== diff -u -r6d2a3554753de6920d704a64c03dc48cc11599a8 -r006c6b1060de8f84a95f80940553251f22e7a60a --- lams_www/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 6d2a3554753de6920d704a64c03dc48cc11599a8) +++ lams_www/web/WEB-INF/tags/OutcomeAuthor.tag (.../OutcomeAuthor.tag) (revision 006c6b1060de8f84a95f80940553251f22e7a60a) @@ -77,7 +77,7 @@ ui.content.splice(index, 2); while(index--) { var label = ui.content[index].label; - if (label.split('(')[0].trim() == term) { + if (label.split('[')[0].trim() == term) { // do not offer to create an output which perfectly matches an existing one sameNameFound = true; }