Skip to content

Commit

Permalink
Support 'actual'.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Mar 19, 2015
1 parent bb81106 commit 2d848de
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nag/lib/Driver/Kolab.php
Expand Up @@ -356,6 +356,9 @@ protected function _getObject($task)
if ($task['estimate'] !== 0.0) {
$object['horde-estimate'] = number_format((float)$task['estimate'], 2);
}
if ($task['actual'] !== 0.0) {
$object['horde-actual'] = number_format((float)$task['actual'], 2);
}
if ($task['methods'] !== null) {
$object['horde-alarm-methods'] = serialize($task['methods']);
}
Expand Down

0 comments on commit 2d848de

Please sign in to comment.