mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 10:22:18 +00:00
more new student -> prestudent changes
ported student->getTab to prestudent->getTab ported student->getStudents to prestudent->getPrestudents
This commit is contained in:
@@ -445,16 +445,15 @@ foreach($ausgabe as $stg_kz=>$value)
|
||||
}
|
||||
|
||||
foreach ($uid as $student_id)
|
||||
{
|
||||
{
|
||||
echo "<tr>";
|
||||
$student = new student();
|
||||
if($student->load($student_id))
|
||||
echo '<td>'.$student->vorname.'</td><td>'.$student->nachname.'</td><td>'.$student->uid.'</td>';
|
||||
$benutzer = new benutzer();
|
||||
if($benutzer->load($student_id))
|
||||
echo '<td>'.$benutzer->vorname.'</td><td>'.$benutzer->nachname.'</td><td>'.$benutzer->uid.'</td>';
|
||||
else
|
||||
echo '<td colspan="3">'.$student_id,'</td>';
|
||||
echo "</tr>";
|
||||
}
|
||||
|
||||
}
|
||||
echo "</table>";
|
||||
}
|
||||
@@ -487,4 +486,4 @@ function getDateForInscription ($semester)
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user