From c7b8ac330b4b65027063a52aadbea6e0eef34655 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 9 Jan 2007 08:18:34 +0000 Subject: [PATCH] Fixes for copyright notice during install MDL-8114 --- admin/index.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/admin/index.php b/admin/index.php index 181af4fc61..8bcf530fac 100644 --- a/admin/index.php +++ b/admin/index.php @@ -115,15 +115,13 @@ $CFG->debug = DEBUG_MINIMAL; error_reporting($CFG->debug); if (empty($agreelicence)) { - $strlicense = get_string("license"); + $strlicense = get_string('license'); print_header($strlicense, $strlicense, $strlicense, "", "", false, " ", " "); print_heading("Moodle - Modular Object-Oriented Dynamic Learning Environment"); - print_heading(get_string("copyrightnotice")); - print_simple_box_start('center'); - echo text_to_html(get_string("gpl")); - print_simple_box_end(); + print_heading(get_string('copyrightnotice')); + print_box(text_to_html(get_string('gpl')), 'copyrightnotice'); echo "
"; - notice_yesno(get_string("doyouagree"), "index.php?agreelicence=true", + notice_yesno(get_string('doyouagree'), "index.php?agreelicence=true", "http://docs.moodle.org/en/License"); exit; } -- 2.39.5