Commit f5b0d043 authored by skummer's avatar skummer

ZP-105

- fixed: dayofweek is a bitmask so we have to allow all values here

git-svn-id: https://z-push.org/svn/z-push/trunk@1414 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent 14d467a7
......@@ -88,11 +88,13 @@ class SyncMeetingRequestRecurrence extends SyncObject {
// 8 = Wednesday
// 16 = Thursday
// 32 = Friday
// 62 = Weekdays // TODO check: value set by WA with daily weekday recurrence
// 62 = Weekdays // not in spec: daily weekday recurrence
// 64 = Saturday
// 127 = The last day of the month. Value valid only in monthly or yearly recurrences.
// As this is a bitmask, actually all values 0 > x < 128 are allowed
SYNC_POOMMAIL_DAYOFWEEK => array ( self::STREAMER_VAR => "dayofweek",
self::STREAMER_CHECKS => array( self::STREAMER_CHECK_ONEVALUEOF => array(1,2,4,8,16,32,62,64,127) )),
self::STREAMER_CHECKS => array( self::STREAMER_CHECK_CMPHIGHER => 0,
self::STREAMER_CHECK_CMPLOWER => 128 )),
// DayOfMonth values
// 1-31 representing the day
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment