Uploaded image for project: 'Moodle'
  1. Moodle
  2. MDL-34937

Quiz responses report fails to display the attempt grade.

    XMLWordPrintable

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 2.3.1
    • 2.3.2
    • Quiz
    • MOODLE_23_STABLE
    • MOODLE_23_STABLE
    • Hide

      1. You need a quiz with completed attempts.

      2. Go to Results -> Responses.

      3. Make sure the finished attempts have the grade shown in grade column.

      Show
      1. You need a quiz with completed attempts. 2. Go to Results -> Responses. 3. Make sure the finished attempts have the grade shown in grade column.

    Description

      Silly typo:

      if ($attempt->state == quiz_attempt::FINISHED) {
          return;
      }

      should be

      if ($attempt->state != quiz_attempt::FINISHED) {
          return;
      }

      Attachments

        Activity

          People

            timhunt Tim Hunt
            timhunt Tim Hunt
            Dan Poltawski Dan Poltawski
            David Monllaó David Monllaó
            Tim Hunt, Ilya Tregubov, Kevin Percy, Mathew May, Mihail Geshoski, Shamim Rezaie
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              10/Sep/12