Index: temp_moodle_dev/moodle/question/import.php =================================================================== RCS file: /usr/local/cvsroot/temp_moodle_dev/moodle/question/import.php,v diff -u -r1.1 -r1.2 --- temp_moodle_dev/moodle/question/import.php 14 Nov 2008 05:57:17 -0000 1.1 +++ temp_moodle_dev/moodle/question/import.php 14 Nov 2008 06:16:59 -0000 1.2 @@ -62,8 +62,8 @@ $navlinks[] = array('name' => format_string($module->name), 'link' => "$CFG->wwwroot/mod/{$cm->modname}/view.php?id={$cm->id}", 'type' => 'title'); $navlinks[] = array('name' => $txt->importquestions, 'link' => '', 'type' => 'title'); $navigation = build_navigation($navlinks); - print_header_simple($txt->importquestions, '', $navigation, "", "", true, $strupdatemodule); - + //we pass a new parameter to the function so it won't we printed if is_lams=1 + print_header_simple($txt->importquestions, '', $navigation, "", "", true, $strupdatemodule,'',false,'',false,$cm->is_lams); $currenttab = 'edit'; $mode = 'import'; ${$cm->modname} = $module; @@ -73,8 +73,8 @@ $navlinks = array(); $navlinks[] = array('name' => $txt->importquestions, 'link' => '', 'type' => 'title'); $navigation = build_navigation($navlinks); - - print_header_simple($txt->importquestions, '', $navigation); + //we pass a new parameter to the function so it won't we printed if is_lams=1 + print_header_simple($txt->importquestions, '', $navigation, "", "", true, $strupdatemodule,'',false,'',false,$cm->is_lams); // print tabs $currenttab = 'import'; include('tabs.php'); @@ -148,7 +148,8 @@ echo "
"; print_continue("edit.php?".($thispageurl->get_query_string(array('category'=>"{$qformat->category->id},{$qformat->category->contextid}")))); - print_footer($COURSE); + //we pass a new parameter to the function so it won't we printed if is_lams=1 + print_footer($COURSE,null, false,$cm->is_lams); exit; } } @@ -157,6 +158,7 @@ /// Print upload form $import_form->display(); - print_footer($COURSE); + //we pass a new parameter to the function so it won't we printed if is_lams=1 + print_footer($COURSE,null, false,$cm->is_lams); ?>