- Anpassungen kreuzerltool

- Anpassungen Sync scripte
- Kollegiumskandidaturen hinzugefügt
This commit is contained in:
Andreas Österreicher
2007-01-25 16:50:43 +00:00
parent 35ba3fb601
commit 85d7eaa550
15 changed files with 58 additions and 112 deletions
+2 -2
View File
@@ -127,9 +127,9 @@ class studiengang
// * Liefert alle Studiengaenge
// * @return true wenn ok, false im Fehlerfall
// *******************************************
function getAll($order=null)
function getAll($order=null, $aktiv=true)
{
$qry = "SELECT * FROM public.tbl_studiengang";
$qry = "SELECT * FROM public.tbl_studiengang WHERE aktiv=".($aktiv?'true':'false');
if($order!=null)
$qry .=" ORDER BY $order";