You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
317 B
12 lines
317 B
2 years ago
|
<?php
|
||
|
// log.php - old scheduled backups report. Now redirecting
|
||
|
// to the new admin one
|
||
|
|
||
|
require_once("../config.php");
|
||
|
|
||
|
require_login();
|
||
|
|
||
|
require_capability('moodle/backup:backupcourse', context_system::instance());
|
||
|
|
||
|
redirect("$CFG->wwwroot/report/backups/index.php", '', 'admin', 1);
|