diff --git a/admin/settings/plugins.php b/admin/settings/plugins.php index 5891e69e536..d8fa1427589 100644 --- a/admin/settings/plugins.php +++ b/admin/settings/plugins.php @@ -160,5 +160,6 @@ foreach (get_list_of_plugins($CFG->admin.'/report') as $plugin) { } // old style 3rd party plugin without settings.php $www_path = "$CFG->wwwroot/$CFG->admin/report/$plugin/index.php"; - $ADMIN->add('reports', new admin_externalpage('report'.$plugin, $plugin, $www_path, 'moodle/site:viewreports')); + $reportname = get_string($plugin, 'report_' . $plugin); + $ADMIN->add('reports', new admin_externalpage('report'.$plugin, $reportname, $www_path, 'moodle/site:viewreports')); }