diff --git a/application/libraries/LDAPLib.php b/application/libraries/LDAPLib.php
index a119af51e..195dddc88 100644
--- a/application/libraries/LDAPLib.php
+++ b/application/libraries/LDAPLib.php
@@ -220,7 +220,9 @@ class LDAPLib
}
else // Connection error
{
- return error(ldap_error($ldapConnection));
+ return error(
+ 'An error occurred while connecting to the LDAP server: '.$ldapConfigs[self::SERVER].':'.$ldapConfigs[self::PORT]
+ );
}
}
}
diff --git a/cis/private/lehre/abgabe_lektor_details.php b/cis/private/lehre/abgabe_lektor_details.php
index 6b6b5633b..9f74d5cf8 100644
--- a/cis/private/lehre/abgabe_lektor_details.php
+++ b/cis/private/lehre/abgabe_lektor_details.php
@@ -122,7 +122,7 @@ $student_uid = $projektarbeit_obj->student_uid;
// paarbeit sollte nur ab SS2021 online bewertet werden
$qry_sem="SELECT 1
- FROM lehre.tbl_projektarbeit
+ FROM lehre.tbl_projektarbeit
JOIN lehre.tbl_lehreinheit USING(lehreinheit_id)
JOIN public.tbl_studiensemester USING(studiensemester_kurzbz)
WHERE projektarbeit_id=".$db->db_add_param($projektarbeit_id, FHC_INTEGER)."
@@ -188,16 +188,16 @@ echo '
'.$p->t('abgabetool/abgabetool').'
-
@@ -693,7 +726,7 @@ if($result = $db->db_query($qry))
}
$content_form.= '';
$content_form.= '| '.$p->t('global/bezeichnung').' | |
';
-$content_form.= '| '.$p->t('global/von').' | ⇓ | ';
+$content_form.= ' |
| '.$p->t('global/von').' | ⇓ | ';
//dropdown fuer vonstunde
$content_form.= $p->t('zeitsperre/stundeInklusive');
@@ -715,7 +748,7 @@ for($i=0;$i<$num_rows_stunde;$i++)
$content_form.= " |
";
-$content_form.= '| '.$p->t('global/bis').' | | ';
+$content_form.= ' |
| '.$p->t('global/bis').' | | ';
//dropdown fuer bisstunde
$content_form.= $p->t('zeitsperre/stundeInklusive');
$content_form.= " |
';
$content_form .= '| |
';
-$content_form.= "| ".$p->t('zeitsperre/achtungEsWerdenAlleEingegebenenTage')." |
";
+$content_form.= "| " .$p->t('zeitsperre/achtungEsWerdenAlleEingegebenenTage')." |
";
$content_form.= '';
echo '';
@@ -794,3 +828,4 @@ echo '
';
+showHideStudeDropDown();'; ?>
diff --git a/cis/private/tools/projektabgabe.php b/cis/private/tools/projektabgabe.php
index 7f440a34e..06ec1e146 100644
--- a/cis/private/tools/projektabgabe.php
+++ b/cis/private/tools/projektabgabe.php
@@ -35,9 +35,6 @@ require_once('../../../include/datum.class.php');
require_once('../../../include/mail.class.php');
require_once('../../../include/phrasen.class.php');
-include('../../../include/meta/jquery.php');
-include('../../../include/meta/jquery-tablesorter.php');
-
$sprache = getSprache();
$p = new phrasen($sprache);
@@ -96,8 +93,10 @@ if($aktion!='zip')
-
-
+ ';
+ include('../../../include/meta/jquery.php');
+ include('../../../include/meta/jquery-tablesorter.php');
+ echo '