]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19816 Converted all print_footer() calls
authornicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:21:09 +0000 (14:21 +0000)
committernicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:21:09 +0000 (14:21 +0000)
mod/survey/index.php
mod/survey/report.php
mod/survey/view.php

index e3c5658a931c53d3322f4b298c23f52959de09a6..034b1dbd5c53d8f2c6c112cb137a10cc5bd9e883 100644 (file)
@@ -79,6 +79,6 @@
 
     echo "<br />";
     print_table($table);
-    print_footer($course);
+    echo $OUTPUT->footer();
 
 ?>
index 968e598da57bdaebd4782bad5e2c50aa4bf1a6da..ca0c9e4e74672d7caab39764ec29f9e30afe95ae 100644 (file)
         break;
 
     }
-    print_footer($course);
+    echo $OUTPUT->footer();
 ?>
index e29d12c438d5df0f28b48f8bb597ae7129c65658..0a04d90c7b388965c06006b194e2453308d9cc13 100644 (file)
             }
         }
 
-        print_footer($course);
+        echo $OUTPUT->footer();
         exit;
     }
 
     if (isguest()) {
         echo '</div>';  
         echo "</form>";
-        print_footer($course);
+        echo $OUTPUT->footer();
         exit;
     }
 
     echo '</div>';
     echo "</form>";
 
-    print_footer($course);
+    echo $OUTPUT->footer();
 
 ?>