diff options
-rwxr-xr-x | includes/funktion_schichtplan_beamer.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/funktion_schichtplan_beamer.php b/includes/funktion_schichtplan_beamer.php index d02b45eb..48a6f849 100755 --- a/includes/funktion_schichtplan_beamer.php +++ b/includes/funktion_schichtplan_beamer.php @@ -126,7 +126,11 @@ function ausgabe_Feld_Inhalt( $SID, $Man ) if( $_SESSION['CVS']["nonpublic/schichtplan_add.php"] == "Y") { if ( $TempValue["free"] > 0) - $Out.= ", ". $TempValue["free"]. "x free "; + { + if( count($TempValue["Engel"]) > 0) + $Out.= ", "; + $Out.= $TempValue["free"]. "x free "; + } } $Out.= "</td>\n"; $Out.= "\t\t\t</tr>\n"; |