summaryrefslogtreecommitdiff
path: root/www-ssl/inc
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-11-10 19:37:59 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-11-10 19:37:59 +0000
commite87e62d953ec5d4a79390ce28ef88fe43a816473 (patch)
tree5ee6538614a28e5aa075f620e53a36568e87d116 /www-ssl/inc
parentf57b0c9137ab8d5278715f2cedf34eabb14ee3d5 (diff)
probleme mit leeren tabellen beseitigt
git-svn-id: svn://svn.cccv.de/engel-system@157 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc')
-rwxr-xr-xwww-ssl/inc/funktion_schichtplan_Tage.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/www-ssl/inc/funktion_schichtplan_Tage.php b/www-ssl/inc/funktion_schichtplan_Tage.php
index 1d44cb1e..5ac92e7e 100755
--- a/www-ssl/inc/funktion_schichtplan_Tage.php
+++ b/www-ssl/inc/funktion_schichtplan_Tage.php
@@ -50,8 +50,11 @@ $SQL = "SELECT `DateS` FROM `Shifts` ORDER BY `DateS` LIMIT 1";
$Erg = mysql_query($SQL, $con);
$Pos=0;
-do
+
+if( mysql_num_rows($Erg)>0)
{
+ do
+ {
//Startdatum einlesen und link ausgeben
$DateS = substr(mysql_result($Erg, 0 , 0), 0,10);
$VeranstaltungsTage[$Pos++] = $DateS;
@@ -77,7 +80,8 @@ do
"ORDER BY `DateS` ".
"LIMIT 1";
$Erg = mysql_query($SQL, $con);
-} while( mysql_fetch_row($Erg) > 0);
+ } while( mysql_fetch_row($Erg) > 0);
+}
$VeranstaltungsTageMax = $Pos-1;
?>