moodle/course/index.php
martin 97c270e9a8 Changes related to language support ... get_string()
Minor little interface cleanups along the way
2002-08-11 15:41:54 +00:00

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();
?>