Removed/added/moved some redundant/missing/misplaced page headers/footers, merged from 15_STABLE

This commit is contained in:
patrickslee 2005-08-03 01:24:29 +00:00
parent 67bbc9b7de
commit 66590bd8a7
8 changed files with 11 additions and 17 deletions

View File

@ -35,7 +35,6 @@
}
if (count($err) == 0) {
print_header();
foreach ($config as $name => $value) {
if (preg_match('/^pluginconfig_(.+?)$/', $name, $matches)) {
$plugin = "auth/$auth";

View File

@ -54,7 +54,6 @@
$config = (object)$a_config;
//weekdays conversions done. Continue
print_header();
foreach ($config as $name => $value) {
backup_set_config($name, $value);
}

View File

@ -47,7 +47,6 @@
unset($config->$item);
}
$block->config_save($config);
print_header();
redirect("$CFG->wwwroot/$CFG->admin/blocks.php", get_string("changessaved"), 1);
exit;
}

View File

@ -30,7 +30,6 @@
validate_form($config, $err);
if (count($err) == 0) {
print_header();
foreach ($config as $name => $value) {
if ($name == "sessioncookie") {
$value = eregi_replace("[^a-zA-Z]", "", $value);

View File

@ -37,8 +37,6 @@
$moduleprefix = '';
}
print_header();
foreach ($config as $name => $value) {
set_config($moduleprefix.$name, $value);
}

View File

@ -17,7 +17,6 @@
/// If data submitted, then process and store.
if ($form = data_submitted()) {
print_header();
foreach ($form as $preference => $value) {
switch ($preference) {
case 'timeformat':

View File

@ -40,6 +40,8 @@
notice_yesno("$strdeletecoursecheck<br /><br />$course->fullname ($course->shortname)",
"delete.php?id=$course->id&amp;delete=".md5($course->timemodified)."&amp;sesskey=$USER->sesskey",
"category.php?id=$course->category");
print_footer($course);
exit;
}

View File

@ -55,16 +55,6 @@
}
/// Print headers
print_header("$course->shortname: $strassignteachers",
"$course->fullname",
"<a href=\"index.php\">$strcourses</a> -> ".
"<a href=\"view.php?id=$course->id\">$course->shortname</a> -> ".
"$strassignteachers", "");
/// If data submitted, then process and store.
if ($form = data_submitted() and confirm_sesskey()) {
@ -94,6 +84,15 @@
redirect("teacher.php?id=$course->id", get_string("changessaved"));
}
/// Print headers
print_header("$course->shortname: $strassignteachers",
"$course->fullname",
"<a href=\"index.php\">$strcourses</a> -> ".
"<a href=\"view.php?id=$course->id\">$course->shortname</a> -> ".
"$strassignteachers", "");
/// Add a teacher if one is specified
if (!empty($add) and confirm_sesskey()) {