MDL-36243 question->questiontext and question->generalfeedback should always be strings

This commit is contained in:
Jean-Michel Vedrine 2012-10-28 20:01:25 +01:00
parent 4bd6f71bad
commit 7980a381cc
7 changed files with 32 additions and 91 deletions

View file

@ -366,14 +366,6 @@ class qformat_default {
$newpage->contents = $question->questiontext;
$newpage->contentsformat = isset($question->questionformat) ? $question->questionformat : FORMAT_HTML;
// Sometimes, questiontext is not a simple text, but one array
// containing both text and format, so we need to support here
// that case with the following dirty patch. MDL-35147
if (is_array($question->questiontext)) {
$newpage->contents = isset($question->questiontext['text']) ? $question->questiontext['text'] : '';
$newpage->contentsformat = isset($question->questiontext['format']) ? $question->questiontext['format'] : FORMAT_HTML;
}
// set up page links
if ($pageid) {
// the new page follows on from this page