mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
- Abschlusspruefung Sortierung geaendert damit die 1. Arbeit zuerst raus kommt und dann erst die 2. Arbeit
- JQuery Autocomplete Schriftgroesse korrigiert
This commit is contained in:
@@ -103,7 +103,9 @@ if($db->db_query($qry))
|
||||
if($db->db_query($qry))
|
||||
if($row_rek = $db->db_fetch_object())
|
||||
$rektor = $row_rek->titelpre.' '.$row_rek->vorname.' '.$row_rek->nachname.' '.$row_rek->titelpost;
|
||||
$qry = "SELECT titel as themenbereich, ende, projektarbeit_id, note FROM lehre.tbl_projektarbeit a WHERE student_uid='$student->uid' AND (projekttyp_kurzbz='Bachelor' OR projekttyp_kurzbz='Diplom') ORDER BY beginn DESC, projektarbeit_id ASC LIMIT 2";
|
||||
$qry = "SELECT * FROM (SELECT titel as themenbereich, ende, projektarbeit_id, note, beginn FROM lehre.tbl_projektarbeit a
|
||||
WHERE student_uid='$student->uid' AND (projekttyp_kurzbz='Bachelor' OR projekttyp_kurzbz='Diplom')
|
||||
ORDER BY beginn DESC, projektarbeit_id ASC LIMIT 2) as a ORDER BY beginn asc";
|
||||
$themenbereich='';
|
||||
$datum_projekt='';
|
||||
$betreuer = '';
|
||||
|
||||
Vendored
+3
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -311,7 +311,7 @@ table.error td {
|
||||
|
||||
table.navbar
|
||||
{
|
||||
background-color: red;
|
||||
background-color: #E6E6CC;
|
||||
}
|
||||
table.logo
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user