From: moodler Date: Tue, 9 Jan 2007 08:18:34 +0000 (+0000) Subject: Fixes for copyright notice during install MDL-8114 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c7b8ac330b4b65027063a52aadbea6e0eef34655;p=moodle.git Fixes for copyright notice during install MDL-8114 --- 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; }