From: skodak Date: Wed, 28 Jan 2009 06:44:41 +0000 (+0000) Subject: MDL-17458 fixed lang selection in sessionless db installer X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=08ff9f81db19884eff6cb9be35caf8bd17d4a06e;p=moodle.git MDL-17458 fixed lang selection in sessionless db installer --- diff --git a/admin/index.php b/admin/index.php index e3a486b128..2ad600b5fa 100644 --- a/admin/index.php +++ b/admin/index.php @@ -112,7 +112,7 @@ print_heading(get_string('copyrightnotice')); print_box(text_to_html(get_string('gpl')), 'copyrightnotice'); echo "
"; - notice_yesno(get_string('doyouagree'), "index.php?agreelicense=1", + notice_yesno(get_string('doyouagree'), "index.php?agreelicense=1&lang=$CFG->lang", "http://docs.moodle.org/en/License"); print_footer('none'); exit; @@ -123,7 +123,7 @@ print_header($strcurrentrelease, $strcurrentrelease, $navigation, "", "", false, " ", " "); print_heading("Moodle $release"); print_box(get_string('releasenoteslink', 'admin', 'http://docs.moodle.org/en/Release_Notes'), 'generalbox boxaligncenter boxwidthwide'); - print_continue('index.php?agreelicense=1&confirmrelease=1'); + print_continue("index.php?agreelicense=1&confirmrelease=1&lang=$CFG->lang"); print_footer('none'); die; } @@ -331,7 +331,7 @@ $sessionstarted = optional_param('sessionstarted', 0, PARAM_BOOL); if (!$sessionstarted) { // we neeed this redirect to setup proper session - upgrade_log_finish('index.php?sessionstarted=1'); + upgrade_log_finish("index.php?sessionstarted=1&lang=$CFG->lang"); } $adminuser = create_admin_user(); $adminuser->newadminuser = 1;