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

Slashes displayed in correct answers for short answer questions

    XMLWordPrintable

Details

    • Bug
    • Status: Closed
    • Trivial
    • Resolution: Fixed
    • 1.8.2
    • 1.8.3, 1.9
    • Questions
    • None
    • Fedora, Apache, PHP 5.1.6, MySQL 5.0.37, latest Moodle 1.8.2+
    • MOODLE_18_STABLE
    • MOODLE_18_STABLE, MOODLE_19_STABLE

    Description

      When reviewing quiz attempts (mod/quiz/review.php), correct answers for short answer questions are displayed with slashes before quotes (see attachment).

      To get rid of this I did:

      — question/type/shortanswer/questiontype.php ORIGINAL
      +++ question/type/shortanswer/questiontype.php MODIFIED
      @@ -378,7 +378,7 @@
      // MDL-7496
      if ($correctanswer)

      { echo ('<div class="correctness">'); - print_string('correctansweris', 'quiz', s($correctanswer)); + print_string('correctansweris', 'quiz', s($correctanswer, TRUE)); // TRUE added, otherwise slashes remained in the answer echo ('</div>'); }
      } else {
      @@ -387,7 +387,7 @@
      print_string('incorrect', 'quiz');
      if ($correctanswer) { echo ('<div class="correctness">');- print_string('correctansweris', 'quiz', s($correctanswer));+ print_string('correctansweris', 'quiz', s($correctanswer, TRUE)); // TRUE added, otherwise slashes remained in the answer echo ('</div>'); }

      }

      Attachments

        Activity

          People

            timhunt Tim Hunt
            mixik Daniel Miksik
            Nobody Nobody
            Safat Shahin, Tim Hunt, Ilya Tregubov, Kevin Percy, Mathew May, Mihail Geshoski, Shamim Rezaie
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:
              11/Oct/07