This commit is contained in:
Andreas Österreicher
2012-01-19 10:30:27 +00:00
parent 26bb03a90d
commit 633d84af53
2 changed files with 12 additions and 6 deletions
+11 -5
View File
@@ -136,11 +136,11 @@ echo '
<tr>
<th>'.$p->t('tools/ampelStatus').'</th>
<th>'.$p->t('tools/ampelBeschreibung').'</th>
<th>'.$p->t('global/organisationseinheit').'</th>
<th>'.$p->t('tools/ampelMitarbeiter').'</th>
<th>'.$p->t('global/organisationseinheit').'</th>
<th>'.$p->t('tools/ampelBestaetigtAm').'</th>
<th>'.$p->t('tools/ampelRestdauer').'</th>
<th>'.$p->t('tools/ampelDeadline').'</th>
<th>'.$p->t('tools/ampelRestdauer').'</th>
</tr>
</thead>
<tbody>
@@ -194,13 +194,19 @@ foreach($ampel->result as $row)
if($beschreibung=='' && isset($row->beschreibung[DEFAULT_LANGUAGE]))
$beschreibung = $row->beschreibung[DEFAULT_LANGUAGE];
echo '<td>'.$beschreibung.'</td>';
$institut = $row->oe_kurzbz;
echo '<td>'.$institut.'</td>';
$name = $row->titelpre.' '.$row->vorname.' '.$row->nachname.' '.$row->titelpost;
echo '<td>'.$name.'</td>';
$institut = $row->oe_kurzbz;
echo '<td>'.$institut.'</td>';
echo '<td>'.$datum_obj->formatDatum($row->insertamum_best,'d.m.Y').'</td>';
echo '<td>'.(($ts_deadline-$ts_now)/86400).'</td>';
echo '<td>'.$datum_obj->formatDatum($row->deadline,'d.m.Y').'</td>';
//Restdauer wird nur angezeigt, wenn noch nicht bestaetigt
if($bestaetigt)
echo '<td></td>';
else
echo '<td>'.(($ts_deadline-$ts_now)/86400).'</td>';
echo '</tr>';
}
echo '</tbody></table>';
+1 -1
View File
@@ -554,7 +554,7 @@ function drawKategorieMenue($rows)
$locked='';
if(count($groups)>0)
{
$locked = '<img src="../skin/images/login.gif" height="12px" title="Zugriff nur für Mitglieder folgender Verteiler:';
$locked = '<img src="../skin/images/login.gif" height="12px" title="Zugriff nur für Mitglieder folgender Gruppen:';
foreach($groups as $group)
$locked.=" $group ";
$locked.='"/>';