moodle 2.1: How can I skip the summary after quiz, and go directly to processattempt?

Re: moodle 2.1: How can I skip the summary after quiz, and go directly to processattempt?

by Albert Leatherman -
Number of replies: 0

Thanks Tim. Changing 

if ($page == -1) {
    $nexturl = $attemptobj->summary_url();

to

if ($page == -1) {
$finishattempt = 1;
    $nexturl = $attemptobj->summary_url();

worked like a charm.