Skip to content

Commit

Permalink
Fix for question numbering provided by razzor, bug 3807
Browse files Browse the repository at this point in the history
  • Loading branch information
gustav_delius committed Jul 25, 2005
1 parent 68bdb28 commit a818110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/quiz/locallib.php
Expand Up @@ -1902,7 +1902,7 @@ function quiz_first_questionnumber($quizlayout, $pagelayout) {
// this works by finding all the questions from the quizlayout that
// come before the current page and then adding up their lengths.
global $CFG;
$start = strpos($quizlayout, $pagelayout)-3;
$start = strpos($quizlayout, ','.$pagelayout.',')-2;
if ($start > 0) {
$prevlist = substr($quizlayout, 0, $start);
return get_field_sql("SELECT sum(length)+1 FROM {$CFG->prefix}quiz_questions
Expand Down

0 comments on commit a818110

Please sign in to comment.