Merge pull request #13 from twetech:unbilled-tickets-report

Fix increment bug in ticket_unbilled_count
This commit is contained in:
Andrew Malsbury 2024-01-10 17:02:20 -06:00 committed by GitHub
commit e30c0a14e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ $rows = 0;
$ticket_unbilled_count = intval($row['ticket_unbilled_count']);
if ($ticket_unbilled_count > 0) {
$rows = $rows++;
$rows = $rows + 1;
?>