"Description", I mean the content of an event.
I wrote:
...
$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $gcal);
$gcal = new Zend_Gdata_Calendar($client);
try {
$event = $gcal->newEventEntry();
$event->title = $gcal->newTitle($title);
$when = $gcal->newWhen();
//$event->timezone = $gcal->newTimezone("GMT-07:00");
$when->startTime = date(DATE_ATOM, mktime($s_h-15,$s_m,0,$s_mm,
$s_dd,$s_yy));
$when->endTime = date(DATE_ATOM, mktime($e_h-13,$e_m,0,$e_mm,
$e_dd,$e_yy));
$event->when = array($when);
$event->where = array($gcal->newWhere($where));
$event->content = $gcal->newContent($content);
$gcal->insertEvent($event);
}
...
New event created, but the description (content) of the event is
empty, while other fields are right.
Why? Thanks.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---