]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-20014 Converted all print_footer() calls
authornicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:27:26 +0000 (14:27 +0000)
committernicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:27:26 +0000 (14:27 +0000)
webservice/amf/testclient/index.php
webservice/documentation.php
webservice/soap/testclient/zend_soap_client.php

index 4ef8afd8816d6c7754eb21a970e859cda4cc8f86..1bcf6c78f0f231c65368c10df785060fc1e4177f 100644 (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();
\ No newline at end of file
+echo $OUTPUT->footer();
index 06f59c779607a01e0b99c639e2e973d5d9aa61b3..356372de3e704e4080f9267ad021b5dfb265a353 100644 (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();
 
 
 
index 48fc1c7dab1c473bd14ef22ccd6e354eb25ffc77..c753fc89f6c9ac3bc806751db4f46a10d8b9bdd8 100644 (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>";
 }
 
-?>
\ No newline at end of file
+?>