Skip to content

Commit

Permalink
Fixed #8454: time tracking sum on request wrong.
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Oct 10, 2007
1 parent 7c06970 commit 52809c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bugnote_stats_inc.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: bugnote_stats_inc.php,v 1.11 2007-08-12 22:43:48 giallu Exp $
# $Id: bugnote_stats_inc.php,v 1.11.2.1 2007-10-10 17:24:03 vboctor Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -115,7 +115,7 @@
<?php
$t_sum_in_minutes = 0;
foreach ( $t_bugnote_stats as $t_item ) {
$t_sum_in_minutes = $t_item['sum_time_tracking'];
$t_sum_in_minutes += $t_item['sum_time_tracking'];
$t_item['sum_time_tracking'] = db_minutes_to_hhmm ( $t_item['sum_time_tracking'] );
?>

Expand Down

0 comments on commit 52809c2

Please sign in to comment.