2005-11-05 10:50:35 +00:00
|
|
|
<?php // $Id$
|
|
|
|
|
|
|
|
require('../config.php');
|
|
|
|
|
|
|
|
/// Select encoding
|
2006-01-05 16:19:26 +00:00
|
|
|
$encoding = current_charset();
|
|
|
|
|
2005-11-05 10:50:35 +00:00
|
|
|
/// Select direction
|
|
|
|
if ( get_string('thisdirection') == 'rtl' ) {
|
|
|
|
$direction = ' dir="rtl"';
|
|
|
|
} else {
|
|
|
|
$direction = ' dir="ltr"';
|
|
|
|
}
|
|
|
|
/// Output the header
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
|
|
|
<html <?php echo $direction ?>>
|
|
|
|
<head>
|
2005-12-26 08:44:59 +00:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=<?php echo $encoding ?>" />
|
2005-11-05 10:50:35 +00:00
|
|
|
</head>
|
|
|
|
<body class="message course-1" id="message-messages">
|