summaryrefslogtreecommitdiff
path: root/www-ssl/inc/funktion_schichtplan.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2007-08-09 16:33:38 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2007-08-09 16:33:38 +0000
commitd5845ab74c0996d22629282f53dc5a6d9ec34c81 (patch)
tree886efc12a984666a7648628d5421b5e897e9ba39 /www-ssl/inc/funktion_schichtplan.php
parent577a5a3423d4298dd5fcd3e38934e79205ac2428 (diff)
aktuelle änderungen
git-svn-id: svn://svn.cccv.de/engel-system@230 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc/funktion_schichtplan.php')
-rwxr-xr-xwww-ssl/inc/funktion_schichtplan.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/www-ssl/inc/funktion_schichtplan.php b/www-ssl/inc/funktion_schichtplan.php
index c9780fba..39785c42 100755
--- a/www-ssl/inc/funktion_schichtplan.php
+++ b/www-ssl/inc/funktion_schichtplan.php
@@ -8,7 +8,7 @@ function ausgabe_Feld_Inhalt( $SID, $Man )
{
// gibt, nach übergabe der der SchichtID (SID) und der RaumBeschreibung,
// die eingetragenden und und offenden Schichteintäge zurück
- global $EngelType, $EngelTypeID, $TID2Name, $con, $DEBUG;
+ global $EngelType, $EngelTypeID, $TID2Name, $con, $DEBUG, $gmdateOffset;
$Spalten = "";
@@ -130,7 +130,7 @@ function ausgabe_Feld_Inhalt( $SID, $Man )
////////////////////////////
//in vergangenheit
$SQLtime = "SELECT `DateE` FROM `Shifts` WHERE (`SID`='$SID' AND `DateE` >= '".
- gmdate("Y-m-d H:i:s", time()+ 3600). "')";
+ gmdate("Y-m-d H:i:s", time()+ $gmdateOffset). "')";
$Ergtime = mysql_query($SQLtime, $con);
if( mysql_num_rows( $Ergtime) > 0)
{
@@ -312,7 +312,7 @@ function CreateRoomShifts( $raum )
#######################################################*/
function showEmptyShifts( )
{
- global $con, $DEBUG, $RoomID;
+ global $con, $DEBUG, $RoomID, $gmdateOffset;
echo "<table border=\"1\">\n";
echo "<tr>\n";
@@ -323,7 +323,7 @@ function showEmptyShifts( )
echo "</tr>\n";
$sql = "SELECT `SID`, `DateS`, `Man`, `RID` FROM `Shifts` ".
- "WHERE (`Shifts`.`DateS`>='". gmdate("Y-m-d H:i:s", time()+3600). "') ".
+ "WHERE (`Shifts`.`DateS`>='". gmdate("Y-m-d H:i:s", time()+$gmdateOffset). "') ".
"ORDER BY `DateS`, `RID`;";
$Erg = mysql_query($sql, $con);