diff --git a/whups/lib/Api.php b/whups/lib/Api.php index faa3feeb5d0..fd794579b7a 100644 --- a/whups/lib/Api.php +++ b/whups/lib/Api.php @@ -611,7 +611,8 @@ public function listCostObjects($criteria) * hour estimates. */ $attributes = $whups_driver->getTicketAttributesWithNames($ticket['id']); foreach ($attributes as $k => $v) { - if (strtolower($k) == _("estimated time")) { + if (Horde_String::lower($k) == _("estimated time") || + Horde_String::lower($k) == 'estimated time') { if (!empty($v)) { $result[$ticket['id']]['estimate'] = (double) $v; }