From 0b9bf5a2a12e56c10b8a1e49dc76e0f77829f25a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Fri, 8 Jun 2007 10:59:45 +0000 Subject: [PATCH] --- rdf/student.rdf.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rdf/student.rdf.php b/rdf/student.rdf.php index 21a528cbf..9ede9094a 100644 --- a/rdf/student.rdf.php +++ b/rdf/student.rdf.php @@ -8,7 +8,10 @@ header("Pragma: no-cache"); // content type setzen header("Content-type: application/xhtml+xml"); // xml -echo ''; +if(isset($_GET['xmlformat']) && $_GET['xmlformat']=='xml') + echo ''; +else + echo ''; // DAO require_once('../vilesci/config.inc.php'); require_once('../include/functions.inc.php');