MDL-19821 Converted all print_footer() calls

This commit is contained in:
nicolasconnault 2009-08-06 14:07:52 +00:00
parent 0646607098
commit 6fd42112e6
2 changed files with 4 additions and 4 deletions

View File

@ -195,7 +195,7 @@ case 'sign':
$repo->print_login();
echo '</form>';
}
print_footer('empty');
echo $OUTPUT->footer();
break;
case 'download':
$filepath = $repo->get_file($file, $title, $itemid);
@ -226,7 +226,7 @@ case 'confirm':
echo '<input type="submit" value="'.get_string('download', 'repository').'" />';
echo '</div>';
echo '</form>';
print_footer('empty');
echo $OUTPUT->footer();
break;
case 'plugins':
$user_context = get_context_instance(CONTEXT_USER, $USER->id);
@ -267,6 +267,6 @@ default:
}
$url->param('action', 'plugins');
echo '<div><a href="'.$url->out().'">'.get_string('addfile', 'repository').'</a></div>';
print_footer('empty');
echo $OUTPUT->footer();
break;
}

View File

@ -190,4 +190,4 @@
redirect($baseurl);
}
print_footer($course);
echo $OUTPUT->footer();