mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 13:38:32 +01:00
12 lines
317 B
PHP
12 lines
317 B
PHP
<?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);
|