Index: lams_tool_doku/web/pages/monitoring/summary.jsp =================================================================== diff -u -r9939cdcd3025a0faf6d295bdca79a3f7cff098c0 -r42e16eed34992a686c478e5ba6aabaf5055c0caf --- lams_tool_doku/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision 9939cdcd3025a0faf6d295bdca79a3f7cff098c0) +++ lams_tool_doku/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision 42e16eed34992a686c478e5ba6aabaf5055c0caf) @@ -233,6 +233,12 @@ mark = $this.text() ? +$this.text() : null, toolSessionId = +$this.closest('.tablesorter').attr('toolSessionId'), userId = +$this.closest('tr').attr('userId'); + + // max mark is 100 + if (mark > 100) { + mark = 100; + $this.text(mark); + } $.ajax({ async: true,