This commit is contained in:
Andreas Österreicher
2010-06-25 08:27:47 +00:00
parent 963a658386
commit 9772f15222
+2 -2
View File
@@ -143,10 +143,10 @@ $db = new basis_db();
</row>
<?php
$hidden='true';
$qry = "SELECT orgform_kurzbz FROM public.tbl_prestudent JOIN public.tbl_studiengang USING(studiengang_kz) WHERE prestudent_id='$prestudent_id'";
$qry = "SELECT mischform FROM public.tbl_prestudent JOIN public.tbl_studiengang USING(studiengang_kz) WHERE prestudent_id='$prestudent_id'";
if($result = $db->db_query($qry))
if($row = $db->db_fetch_object($result))
if($row->orgform_kurzbz=='VBB')
if($row->mischform=='t')
$hidden='false';
?>
<row hidden="<?php echo $hidden; ?>">