Correctly cast calendarID
This commit is contained in:
parent
62a29c3ab3
commit
ddfee4c49a
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ Class TaskParser {
|
|||
*/
|
||||
public function parseTask($vtodo, $calendarID){
|
||||
$task = array( 'id' => (string) $vtodo->ID);
|
||||
$task['calendarid'] = $calendarID;
|
||||
$task['calendarid'] = (string) $calendarID;
|
||||
$task['type'] = 'task';
|
||||
$task['name'] = (string) $vtodo->SUMMARY;
|
||||
$task['created'] = (string) $vtodo->CREATED;
|
||||
|
|
Loading…
Reference in a new issue