Skip to content

Commit

Permalink
MDL-20014 Converted all print_footer() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Aug 6, 2009
1 parent 948b271 commit 8f270f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion webservice/amf/testclient/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
echo '<div id="moodletestclient">
<p>You need to install Flash 9.0</p>
</div>';
print_footer();
echo $OUTPUT->footer();
2 changes: 1 addition & 1 deletion webservice/documentation.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
webservice_lib::display_webservices_availability($protocol);
generate_documentation($protocol);
generate_functionlist();
print_footer();
echo $OUTPUT->footer();



Expand Down
6 changes: 3 additions & 3 deletions webservice/soap/testclient/zend_soap_client.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
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();
}

Expand Down Expand Up @@ -130,7 +130,7 @@
print "</pre>";

/// Display Moodle page footer
print_footer();
echo $OUTPUT->footer();


/**
Expand All @@ -144,4 +144,4 @@ function printLastRequestResponse($client) {
print "</pre>";
}

?>
?>

0 comments on commit 8f270f3

Please sign in to comment.