diff --git a/vilesci/moodle/kurs_verwaltung.php b/vilesci/moodle/kurs_verwaltung.php
index 92bbf058f..3d1ac003b 100644
--- a/vilesci/moodle/kurs_verwaltung.php
+++ b/vilesci/moodle/kurs_verwaltung.php
@@ -86,12 +86,16 @@
$host = 'dav.technikum-wien.at';
else
$host = 'cis.technikum-wien.at';
+
// Variable Daten Initialisieren
$uri = "/moodle/xmlrpc/xmlrpc.php";
$method = "DeleteCourseByID";
$args['CourseID']="$mdl_course_id";
$port=$_SERVER["SERVER_PORT"];
-
+ if ($debug_switch)
+ {
+ $content.="
Host:$host , Port:$port , Uri:$uri , Method:$method
";
+ }
$callspec = array(
'method' => $method,
'host' => $host,