Fix participants() deleted attendee issue

This commit is contained in:
Jörg Lehrke 2009-10-06 23:30:05 +00:00
parent 49de506d6f
commit 7f07102630

View File

@ -964,7 +964,8 @@ ORDER BY cal_user_type, cal_usre_id
'cal_user_id' => $ids,
));
}
$this->db->delete($this->user_table,$where + array('('.implode(' OR ',$to_or).')'),__LINE__,__FILE__,'calendar');
$where[] = '('.implode(' OR ',$to_or).')';
$this->db->delete($this->user_table,$where,__LINE__,__FILE__,'calendar');
}
}