1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-03 23:46:09 +01:00

12 lines
331 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/site:backup', get_context_instance(CONTEXT_SYSTEM));
redirect("$CFG->wwwroot/$CFG->admin/report/backups/index.php", '', 'admin', 1);