Skip to content

Commit

Permalink
Merge branch 'MDL-34257_22' of git://github.com/timhunt/moodle into M…
Browse files Browse the repository at this point in the history
…OODLE_22_STABLE
  • Loading branch information
Sam Hemelryk committed Oct 1, 2012
2 parents 60bbf98 + e65f54f commit 4fd7c54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions mod/quiz/attempt.php
Expand Up @@ -75,8 +75,9 @@


// Check the access rules. // Check the access rules.
$accessmanager = $attemptobj->get_access_manager(time()); $accessmanager = $attemptobj->get_access_manager(time());
$messages = $accessmanager->prevent_access(); $accessmanager->setup_attempt_page($PAGE);
$output = $PAGE->get_renderer('mod_quiz'); $output = $PAGE->get_renderer('mod_quiz');
$messages = $accessmanager->prevent_access();
if (!$attemptobj->is_preview_user() && $messages) { if (!$attemptobj->is_preview_user() && $messages) {
print_error('attempterror', 'quiz', $attemptobj->view_url(), print_error('attempterror', 'quiz', $attemptobj->view_url(),
$output->access_messages($messages)); $output->access_messages($messages));
Expand Down Expand Up @@ -110,7 +111,6 @@
$headtags = $attemptobj->get_html_head_contributions($page); $headtags = $attemptobj->get_html_head_contributions($page);
$PAGE->set_title(format_string($attemptobj->get_quiz_name())); $PAGE->set_title(format_string($attemptobj->get_quiz_name()));
$PAGE->set_heading($attemptobj->get_course()->fullname); $PAGE->set_heading($attemptobj->get_course()->fullname);
$accessmanager->setup_attempt_page($PAGE);


if ($attemptobj->is_last_page($page)) { if ($attemptobj->is_last_page($page)) {
$nextpage = -1; $nextpage = -1;
Expand Down
3 changes: 2 additions & 1 deletion mod/quiz/review.php
Expand Up @@ -53,6 +53,8 @@


// Create an object to manage all the other (non-roles) access rules. // Create an object to manage all the other (non-roles) access rules.
$accessmanager = $attemptobj->get_access_manager(time()); $accessmanager = $attemptobj->get_access_manager(time());
$accessmanager->setup_attempt_page($PAGE);

$options = $attemptobj->get_display_options(true); $options = $attemptobj->get_display_options(true);


// Check permissions. // Check permissions.
Expand Down Expand Up @@ -104,7 +106,6 @@
$headtags = $attemptobj->get_html_head_contributions($page, $showall); $headtags = $attemptobj->get_html_head_contributions($page, $showall);
$PAGE->set_title(format_string($attemptobj->get_quiz_name())); $PAGE->set_title(format_string($attemptobj->get_quiz_name()));
$PAGE->set_heading($attemptobj->get_course()->fullname); $PAGE->set_heading($attemptobj->get_course()->fullname);
$accessmanager->setup_attempt_page($PAGE);


// Summary table start ============================================================================ // Summary table start ============================================================================


Expand Down
4 changes: 2 additions & 2 deletions mod/quiz/summary.php
Expand Up @@ -57,8 +57,9 @@


// Check access. // Check access.
$accessmanager = $attemptobj->get_access_manager(time()); $accessmanager = $attemptobj->get_access_manager(time());
$messages = $accessmanager->prevent_access(); $accessmanager->setup_attempt_page($PAGE);
$output = $PAGE->get_renderer('mod_quiz'); $output = $PAGE->get_renderer('mod_quiz');
$messages = $accessmanager->prevent_access();
if (!$attemptobj->is_preview_user() && $messages) { if (!$attemptobj->is_preview_user() && $messages) {
print_error('attempterror', 'quiz', $attemptobj->view_url(), print_error('attempterror', 'quiz', $attemptobj->view_url(),
$output->access_messages($messages)); $output->access_messages($messages));
Expand Down Expand Up @@ -86,7 +87,6 @@
$PAGE->navbar->add(get_string('summaryofattempt', 'quiz')); $PAGE->navbar->add(get_string('summaryofattempt', 'quiz'));
$PAGE->set_title(format_string($attemptobj->get_quiz_name())); $PAGE->set_title(format_string($attemptobj->get_quiz_name()));
$PAGE->set_heading($attemptobj->get_course()->fullname); $PAGE->set_heading($attemptobj->get_course()->fullname);
$accessmanager->setup_attempt_page($PAGE);


// Display the page. // Display the page.


Expand Down

0 comments on commit 4fd7c54

Please sign in to comment.