diff --git a/include/wochenplan.class.php b/include/wochenplan.class.php
index af01f580d..a0fb250f1 100755
--- a/include/wochenplan.class.php
+++ b/include/wochenplan.class.php
@@ -43,6 +43,7 @@ require_once(dirname(__FILE__).'/globals.inc.php');
require_once(dirname(__FILE__).'/sprache.class.php');
require_once(dirname(__FILE__).'/functions.inc.php');
require_once(dirname(__FILE__).'/betriebsmittel.class.php');
+require_once(dirname(__FILE__).'/lehrveranstaltung.class.php');
class wochenplan extends basis_db
{
@@ -490,7 +491,14 @@ class wochenplan extends basis_db
echo '
'.$this->ort_ausstattung;
}
if ($this->type=='lva')
+ {
$this->link.='&lva='.$this->lva;
+ $lehrveranstaltung = new lehrveranstaltung();
+ $lehrveranstaltung->load($this->lva);
+ $studiengang = new studiengang();
+ $studiengang->load($lehrveranstaltung->studiengang_kz);
+ echo ''.$p->t('global/lehrveranstaltung').': '.$lehrveranstaltung->bezeichnung_arr[$sprache].' / '.$studiengang->kuerzel.'-'.$lehrveranstaltung->semester.'
';
+ }
echo '
| '.$this->crlf; diff --git a/skin/images/button_lvplan.png b/skin/images/button_lvplan.png new file mode 100644 index 000000000..26e798a58 Binary files /dev/null and b/skin/images/button_lvplan.png differ |