Skip to content

Commit

Permalink
MDL-29904-M21 FIX to add pagelayout=>report
Browse files Browse the repository at this point in the history
  • Loading branch information
Mary Evans committed Nov 20, 2011
1 parent cf04ce3 commit e0aceca
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion admin/report/backups/index.php
Expand Up @@ -7,7 +7,7 @@

$courseid = optional_param('courseid', 0, PARAM_INT);

admin_externalpage_setup('reportbackups');
admin_externalpage_setup('reportbackups', '', null, '', array('pagelayout'=>'report'));
echo $OUTPUT->header();

/// Automated backups aren't active by the site admin
Expand Down
2 changes: 1 addition & 1 deletion admin/report/configlog/index.php
Expand Up @@ -9,7 +9,7 @@
$sort = optional_param('sort', 'timemodified', PARAM_ALPHA);
$dir = optional_param('dir', 'DESC', PARAM_ALPHA);

admin_externalpage_setup('reportconfiglog');
admin_externalpage_setup('reportconfiglog', '', null, '', array('pagelayout'=>'report'));
echo $OUTPUT->header();

echo $OUTPUT->heading(get_string('configlog', 'report_configlog'));
Expand Down
2 changes: 1 addition & 1 deletion admin/report/courseoverview/index.php
Expand Up @@ -16,7 +16,7 @@
}
}

admin_externalpage_setup('reportcourseoverview');
admin_externalpage_setup('reportcourseoverview', '', null, '', array('pagelayout'=>'report'));
echo $OUTPUT->header();

$course = get_site();
Expand Down
2 changes: 1 addition & 1 deletion admin/report/questioninstances/index.php
Expand Up @@ -15,7 +15,7 @@
$requestedqtype = optional_param('qtype', '', PARAM_SAFEDIR);

// Print the header & check permissions.
admin_externalpage_setup('reportquestioninstances');
admin_externalpage_setup('reportquestioninstances', '', null, '', array('pagelayout'=>'report'));
echo $OUTPUT->header();

// Log.
Expand Down
2 changes: 1 addition & 1 deletion admin/report/security/index.php
Expand Up @@ -45,7 +45,7 @@
@set_time_limit(0);

// Print the header.
admin_externalpage_setup('reportsecurity');
admin_externalpage_setup('reportsecurity', '', null, '', array('pagelayout'=>'report'));
echo $OUTPUT->header();

echo $OUTPUT->heading(get_string('pluginname', 'report_security'));
Expand Down
2 changes: 1 addition & 1 deletion admin/report/spamcleaner/index.php
Expand Up @@ -40,7 +40,7 @@
$id = optional_param('id', '', PARAM_INT);

require_login();
admin_externalpage_setup('reportspamcleaner');
admin_externalpage_setup('reportspamcleaner', '', null, '', array('pagelayout'=>'report'));

// Delete one user
if (!empty($del) && confirm_sesskey() && ($id != $USER->id)) {
Expand Down

0 comments on commit e0aceca

Please sign in to comment.