Aportación realizada por Itamar Tzadok

Yes, what I'm talking about isn't, strictly speaking, a problem in any module but it seems a design problem with respect to a common scores release strategy. I actually checked it on demo.moodle.org and the problem seems to persist. Presumably to prevent students from reviewing quiz scores until I release them I should clear the scores checkboxes in the review options of the quiz settings and not display the quiz in the gradebook. But the scores are still displayed in the student's personal activity report (accessed from the student's profile) which defeats my purpose. Am I missing other related settings?

Itamar sonrisa
We found that even when the quiz was set to hide scores until the it was closed students could still see the scores before the quiz closed in their activity report. That's in 1.6.x and it may have changed since then but is worth verifying. We had to hide the activity report to avoid revealing the scores too early.
There seems to be no easy solution for that. This is standard HTML behavior and has to do with the way the HTML of the paging bar is written. So, you can hack the function that displays the paging-bar to write the numbers in several lines. Or, a less elegant workaround, you can try to find in styles.css the pagingbar style definition and add 'overflow:auto' which will clip the numbers that go over the bar's frame and add a scroll bar so that they can be scrolled at.

Itamar sonrisa