Use category names for history-log

This commit is contained in:
Jörg Lehrke 2010-02-19 17:42:02 +00:00
parent ce7324f12f
commit e362a5b451

View File

@ -884,6 +884,8 @@ class calendar_boupdate extends calendar_bo
// Update history
$tracking = new calendar_tracking($this);
$event['category'] = implode(',', $this->get_categories($event['category']));
$old_event['category'] = implode(',', $this->get_categories($old_event['category']));
$tracking->track($event, $old_event);
return $cal_id;