mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
97c270e9a8
Minor little interface cleanups along the way
24 lines
364 B
PHP
24 lines
364 B
PHP
<?PHP // $Id$
|
|
// Display list of all courses
|
|
|
|
require("../config.php");
|
|
require("lib.php");
|
|
|
|
$title = get_string("courses");
|
|
|
|
print_header($title, $title, $title, "");
|
|
|
|
optional_variable($cat, 1);
|
|
|
|
echo "<TABLE WIDTH=80% ALIGN=CENTER><TR><TD>";
|
|
|
|
print_all_courses($cat);
|
|
|
|
echo "</TD></TR></TABLE>";
|
|
|
|
print_footer();
|
|
|
|
?>
|
|
|
|
|