Ok, here is the fix/workaround. Per 
http://framework.zend.com/issues/browse/ZF-1961,
the Zend framework could handle this better. A fix for now is to
modify the function in file: Zend/Gdata/Extension/AttendeeStatus.php
to be:

    public function getDOM($doc = null)
    {
        $element = parent::getDOM($doc);
        if ($this->_value !== null) {
            $element->setAttribute('value', $this->_value);
        }
        return $element;
    }


I.e., to change != null to !== null

This stops the error and allows the calendar update to succeed.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to