diff --git a/cis/private/lehre/moodle_wartung.php b/cis/private/lehre/moodle_wartung.php
index 8a73b91fc..9177a4233 100644
--- a/cis/private/lehre/moodle_wartung.php
+++ b/cis/private/lehre/moodle_wartung.php
@@ -125,7 +125,15 @@ if(isset($_POST['neu']))
$studiengang = new studiengang($conn);
$studiengang->load($lehrveranstaltung->studiengang_kz);
+ //Kurzbezeichnung generieren Format: STSEM-STG-SEM-LV/LEID/LEID/LEID...
$shortname = $stsem.'-'.$studiengang->kuerzel.'-'.$lehrveranstaltung->semester.'-'.$lehrveranstaltung->kurzbz;
+ foreach ($_POST as $key=>$value)
+ {
+ if(strstr($key, 'lehreinheit_'))
+ {
+ $shortname.='/'.$value;
+ }
+ }
//Gesamte LV zu einem Moodle Kurs zusammenlegen
if($art=='lv')
{
diff --git a/content/fas.xul.php b/content/fas.xul.php
index 7dcb0353a..6800e7b9e 100644
--- a/content/fas.xul.php
+++ b/content/fas.xul.php
@@ -122,6 +122,7 @@ echo '';
+
@@ -587,6 +588,12 @@ echo '';
label = "&menu-help-close.label;"
command = "menu-help-close:command"
accesskey = "&menu-help-close.accesskey;"/>
+