2005-11-05 10:50:35 +00:00
|
|
|
<?php // $Id$
|
|
|
|
|
|
|
|
require('../config.php');
|
|
|
|
|
|
|
|
/// Select direction
|
|
|
|
if ( get_string('thisdirection') == 'rtl' ) {
|
|
|
|
$direction = ' dir="rtl"';
|
|
|
|
} else {
|
|
|
|
$direction = ' dir="ltr"';
|
|
|
|
}
|
|
|
|
/// Output the header
|
2006-11-11 17:23:20 +00:00
|
|
|
@header('Content-Type: text/html; charset=utf-8');
|
2005-11-05 10:50:35 +00:00
|
|
|
?>
|
2006-12-18 17:10:35 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" <?php echo $direction ?>>
|
2005-11-05 10:50:35 +00:00
|
|
|
<head>
|
2006-11-11 17:23:20 +00:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
2005-11-05 10:50:35 +00:00
|
|
|
</head>
|
|
|
|
<body class="message course-1" id="message-messages">
|