kleine constant Fehler geändert
This commit is contained in:
@ -56,7 +56,7 @@ if($action == ''){
|
||||
ORDER BY erfass_dat ASC");
|
||||
$row_status = $result_status->fetch_array();
|
||||
|
||||
switch ($row[beziehung])
|
||||
switch ($row['beziehung'])
|
||||
{
|
||||
case "P":
|
||||
$beziehung = "ProfessorIn";
|
||||
@ -144,11 +144,11 @@ if($action == ''){
|
||||
|
||||
while ($row2a = $result2a->fetch_array()){
|
||||
array_push($table_data2a, array(
|
||||
'vorname' => $row2a[vorname],
|
||||
'nachname' => $row2a[nachname],
|
||||
'bid' => $row2a[bid],
|
||||
'stellung_dat' => $row2a[stellung_dat],
|
||||
'stellung_dat_form' => $row2a[stellung_dat_form]
|
||||
'vorname' => $row2a['vorname'],
|
||||
'nachname' => $row2a['nachname'],
|
||||
'bid' => $row2a['bid'],
|
||||
'stellung_dat' => $row2a['stellung_dat'],
|
||||
'stellung_dat_form' => $row2a['stellung_dat_form']
|
||||
)
|
||||
);
|
||||
}
|
||||
@ -164,38 +164,38 @@ if($action == ''){
|
||||
WHERE vid = $id");
|
||||
$row4 = $result4->fetch_array();
|
||||
|
||||
if($row4[annahme] == 'J'){
|
||||
if($row4['annahme'] == 'J'){
|
||||
$annahme = 'Ja';
|
||||
}else{
|
||||
$annahme = 'Nein';
|
||||
}
|
||||
|
||||
if(preg_match("/1/",$row4[ziel])){
|
||||
if(preg_match("/1/",$row4['ziel'])){
|
||||
$smarty->assign('ansicht_entschieden_chk1', 1);
|
||||
}else{
|
||||
$smarty->assign('ansicht_entschieden_chk1', 0);
|
||||
}
|
||||
|
||||
|
||||
if(preg_match("/2/",$row4[ziel])){
|
||||
if(preg_match("/2/",$row4['ziel'])){
|
||||
$smarty->assign('ansicht_entschieden_chk2', 2);
|
||||
}else{
|
||||
$smarty->assign('ansicht_entschieden_chk2', 0);
|
||||
}
|
||||
|
||||
if(preg_match("/3/",$row4[ziel])){
|
||||
if(preg_match("/3/",$row4['ziel'])){
|
||||
$smarty->assign('ansicht_entschieden_chk3', 3);
|
||||
}else{
|
||||
$smarty->assign('ansicht_entschieden_chk3', 0);
|
||||
}
|
||||
|
||||
if(preg_match("/4/",$row4[ziel])){
|
||||
if(preg_match("/4/",$row4['ziel'])){
|
||||
$smarty->assign('ansicht_entschieden_chk4', 4);
|
||||
}else{
|
||||
$smarty->assign('ansicht_entschieden_chk4', 0);
|
||||
}
|
||||
|
||||
if(preg_match("/5/",$row4[ziel])){
|
||||
if(preg_match("/5/",$row4['ziel'])){
|
||||
$smarty->assign('ansicht_entschieden_chk5', 5);
|
||||
}else{
|
||||
$smarty->assign('ansicht_entschieden_chk5', 0);
|
||||
@ -205,7 +205,7 @@ if($action == ''){
|
||||
$smarty->assign('ansicht_entschieden_annahme', "$annahme");
|
||||
$smarty->assign('ansicht_entschieden_annahme_bemerkung', "$row4[annahme_bemerkung]");
|
||||
|
||||
if($row4[praemie] == 'J'){
|
||||
if($row4['praemie'] == 'J'){
|
||||
$praemie = 'Ja';
|
||||
}else{
|
||||
$praemie = 'Nein';
|
||||
@ -264,7 +264,7 @@ if($action == ''){
|
||||
$table_data3 = array();
|
||||
$verlauf_dup = array("");
|
||||
while ($row3 = $result3->fetch_array()){
|
||||
$status = $row3[status];
|
||||
$status = $row3['status'];
|
||||
|
||||
if($row3['sid'] == '103'){
|
||||
# Da jedes Ausschussmitglied informiert wird, reicht es aus, wenn bei den Statusdetails nur ein Hinweis pro Gutachter genannt wird, nicht 5x pro Person
|
||||
@ -293,7 +293,7 @@ if($action == ''){
|
||||
}
|
||||
|
||||
array_push($table_data3, array(
|
||||
'datum1' => $row3[datum1],
|
||||
'datum1' => $row3['datum1'],
|
||||
'info' => $info,
|
||||
'status' => $status
|
||||
)
|
||||
@ -321,4 +321,4 @@ if($action == 'save'){
|
||||
|
||||
$smarty->assign('action', "$action");
|
||||
$smarty->display("$template/$templatename");
|
||||
?>
|
||||
?>
|
||||
|
Reference in New Issue
Block a user