mirror of
https://github.com/moodle/moodle.git
synced 2025-04-15 05:25:08 +02:00
Removed/added/moved some redundant/missing/misplaced page headers/footers, merged from 15_STABLE
This commit is contained in:
parent
67bbc9b7de
commit
66590bd8a7
@ -35,7 +35,6 @@
|
||||
}
|
||||
|
||||
if (count($err) == 0) {
|
||||
print_header();
|
||||
foreach ($config as $name => $value) {
|
||||
if (preg_match('/^pluginconfig_(.+?)$/', $name, $matches)) {
|
||||
$plugin = "auth/$auth";
|
||||
|
@ -54,7 +54,6 @@
|
||||
$config = (object)$a_config;
|
||||
//weekdays conversions done. Continue
|
||||
|
||||
print_header();
|
||||
foreach ($config as $name => $value) {
|
||||
backup_set_config($name, $value);
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -37,8 +37,6 @@
|
||||
$moduleprefix = '';
|
||||
}
|
||||
|
||||
print_header();
|
||||
|
||||
foreach ($config as $name => $value) {
|
||||
set_config($moduleprefix.$name, $value);
|
||||
}
|
||||
|
@ -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':
|
||||
|
@ -40,6 +40,8 @@
|
||||
notice_yesno("$strdeletecoursecheck<br /><br />$course->fullname ($course->shortname)",
|
||||
"delete.php?id=$course->id&delete=".md5($course->timemodified)."&sesskey=$USER->sesskey",
|
||||
"category.php?id=$course->category");
|
||||
|
||||
print_footer($course);
|
||||
exit;
|
||||
}
|
||||
|
||||
|
@ -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()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user