fixed wrong sign of alpe's correction - it made it even worse ;-)

This commit is contained in:
Ralf Becker 2004-05-23 14:51:27 +00:00
parent 24f85350e6
commit b106b38597

View File

@ -98,7 +98,7 @@
);
$alarm['id'] = $this->so->save_alarm($cal_id,$alarm);
$event['alarm'][$alarm['id']] = $alarm;
$event['alarm'][$alarm['id']]['time'] = $alarm['time'] + $this->tz_offset; // allows viewing alarm time in users timezone
$event['alarm'][$alarm['id']]['time'] = $alarm['time'] - $this->tz_offset; // allows viewing alarm time in users timezone
return $alarm;
}