Index: booking_timeslots/booking_timeslots.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/booking_timeslots/booking_timeslots.inc,v
retrieving revision 1.1
diff -u -p -r1.1 booking_timeslots.inc
--- booking_timeslots/booking_timeslots.inc	27 Mar 2009 14:18:57 -0000	1.1
+++ booking_timeslots/booking_timeslots.inc	31 Mar 2009 19:22:52 -0000
@@ -22,7 +22,7 @@ function booking_timeslots_add_time($dat
     foreach ($rules as $type => $how_much) {
         $arr[$type] += $how_much;
     }
-    $new_datetime = gmdate('Y-m-d H:i:s',mktime($arr['hour'], $arr['minute'], $arr['second'], $arr['month'], $arr['mday'], $arr['year']));
+    $new_datetime = date('Y-m-d H:i:s',mktime($arr['hour'], $arr['minute'], $arr['second'], $arr['month'], $arr['mday'], $arr['year']));
     return is_array($datetime) ? booking_timeslots_convert_date_to_arr($new_datetime) : $new_datetime;
 }
 
