MDL-20014 Converted all print_footer() calls

This commit is contained in:
nicolasconnault 2009-08-06 14:27:26 +00:00
parent 948b27131e
commit 8f270f3e8d
3 changed files with 5 additions and 5 deletions

View File

@ -21,4 +21,4 @@ print_header_simple('Test Client', 'Test Client');
echo '<div id="moodletestclient">
<p>You need to install Flash 9.0</p>
</div>';
print_footer();
echo $OUTPUT->footer();

View File

@ -35,7 +35,7 @@ print_header(get_string('wspagetitle','webservice'), get_string('wspagetitle','w
webservice_lib::display_webservices_availability($protocol);
generate_documentation($protocol);
generate_functionlist();
print_footer();
echo $OUTPUT->footer();

View File

@ -42,7 +42,7 @@ print_header('Soap test client', 'Soap test client'.":", true);
if (!webservice_lib::display_webservices_availability("soap")) {
echo "<br/><br/>";
echo "Please fix the previous problem(s), the testing session has been interupted.";
print_footer();
echo $OUTPUT->footer();
exit();
}
@ -130,7 +130,7 @@ try {
print "</pre>";
/// Display Moodle page footer
print_footer();
echo $OUTPUT->footer();
/**
@ -144,4 +144,4 @@ function printLastRequestResponse($client) {
print "</pre>";
}
?>
?>