Skip to content

Commit

Permalink
Merge pull request #32449 from erikvanberkum/patch-1
Browse files Browse the repository at this point in the history
Update ticket.class.php
  • Loading branch information
eldy authored Dec 23, 2024
2 parents 96112a1 + b8d7825 commit 58f641a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/ticket/class/ticket.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3192,7 +3192,7 @@ public function load_board($user, $mode)
while ($obj = $this->db->fetch_object($resql)) {
$response->nbtodo++;
if ($mode == 'opened') {
$datelimit = $this->db->jdate($obj->datec) + $delay_warning;
$datelimit = (int) $this->db->jdate($obj->datec) + (int) $delay_warning;
if ($datelimit < $now) {
//$response->nbtodolate++;
}
Expand Down

0 comments on commit 58f641a

Please sign in to comment.