Merge branch 'MDL-26178' of git://github.com/timhunt/moodle

This commit is contained in:
Sam Hemelryk
2011-01-31 17:47:30 +08:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -375,14 +375,14 @@ class quiz {
$this->pagequestionids = array();
// Get the appropriate layout string (from quiz or attempt).
$layout = $this->get_layout_string();
$layout = quiz_clean_layout($this->get_layout_string(), true);
if (empty($layout)) {
// Nothing to do.
return;
}
// Break up the layout string into pages.
$pagelayouts = explode(',0', quiz_clean_layout($layout, true));
$pagelayouts = explode(',0', $layout);
// Strip off any empty last page (normally there is one).
if (end($pagelayouts) == '') {
+1 -1
View File
@@ -339,7 +339,7 @@
/// or a button to go back to the course page.
echo $OUTPUT->box_start('quizattempt');
$buttontext = ''; // This will be set something if as start/continue attempt button should appear.
if (!$quiz->questions) {
if (!quiz_clean_layout($quiz->questions, true)) {
echo $OUTPUT->heading(get_string("noquestions", "quiz"));
} else {
if ($unfinished) {