Skip to content

Commit d964797

Browse files
jmarquez90Paul McCann
authored andcommitted
Added index column to Admin/ModuleManage/GetProgress table per #671
1 parent c967120 commit d964797

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/dbProcs/Getter.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1932,6 +1932,9 @@ public static String getProgress(String applicationRoot, String classId) {
19321932
if (resultSet.getString(1) != null) {
19331933
result +=
19341934
"<tr><td>"
1935+
+ resultAmount
1936+
+ // Output the user
1937+
"</td><td>"
19351938
+ Encode.forHtml(resultSet.getString(1))
19361939
+ // Output their progress
19371940
"</td><td><div style='background-color: #A878EF; heigth: 25px; width: "
@@ -1946,7 +1949,7 @@ public static String getProgress(String applicationRoot, String classId) {
19461949
}
19471950
}
19481951
if (resultAmount > 0) {
1949-
result = "<table><tr><th>Player</th><th>Progress</th></tr>" + result + "</table>";
1952+
result = "<table><tr><th>#</th><th>Player</th><th>Progress</th></tr>" + result + "</table>";
19501953
} else {
19511954
result = new String();
19521955
}

0 commit comments

Comments
 (0)