Fix SyncML device timezone issues

This commit is contained in:
Jörg Lehrke 2010-06-17 07:38:27 +00:00
parent 2cfaebacd3
commit b44f0c2f41
3 changed files with 6 additions and 6 deletions

View File

@ -1198,10 +1198,10 @@ class calendar_sif extends calendar_boupdate
{ {
switch ($deviceInfo['tzid']) switch ($deviceInfo['tzid'])
{ {
case 1: case -1:
$this->tzid = false; $this->tzid = false;
break; break;
case 2: case -2:
$this->tzid = null; $this->tzid = null;
break; break;
default: default:

View File

@ -964,10 +964,10 @@ class infolog_ical extends infolog_bo
{ {
switch ($deviceInfo['tzid']) switch ($deviceInfo['tzid'])
{ {
case 1: case -1:
$this->tzid = false; $this->tzid = false;
break; break;
case 2: case -2:
$this->tzid = null; $this->tzid = null;
break; break;
default: default:

View File

@ -644,10 +644,10 @@ class infolog_sif extends infolog_bo
{ {
switch ($deviceInfo['tzid']) switch ($deviceInfo['tzid'])
{ {
case 1: case -1:
$this->tzid = false; $this->tzid = false;
break; break;
case 2: case -2:
$this->tzid = null; $this->tzid = null;
break; break;
default: default: