include("../global.php");
global $PAGE;
$PAGE->htmltitle = $PAGE->sitetitle = "Bericht zur CBZ 11 auf RFL";
if($CURRENT_USER->id>0) {
// Eingeloggt
ob_start();
?>
$output = ob_get_contents();
ob_end_clean();
} else {
// Ausgeloggt
ob_start();
?>
Zugriff verweigert!
$output = ob_get_contents();
ob_end_clean();
}
$PAGE->render($output);
?>