Skip to content

Commit

Permalink
Fix #16880: another one
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Jan 28, 2014
1 parent a3c9358 commit 56fcd1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/MantisGraph/core/graph_api.php
Expand Up @@ -831,7 +831,7 @@ function create_cumulative_bydate() {
AND $t_history_table.field_name = 'status' )
OR $t_history_table.id is NULL )
ORDER BY $t_bug_table.id, date_modified ASC";
$result = db_query( $query, array( $t_res_val, $t_res_val ) );
$result = db_query_bound( $query, array( $t_res_val, $t_res_val ) );
$bug_count = db_num_rows( $result );

$t_last_id = 0;
Expand Down

0 comments on commit 56fcd1c

Please sign in to comment.