Skip to content

Commit

Permalink
Fix startdate for registered client widget
Browse files Browse the repository at this point in the history
  • Loading branch information
bochoven committed May 10, 2017
1 parent ee7134b commit bf120d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/reportdata/views/registered_clients_widget.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{
var total = 0
temp = {key: type, values: []};
for (var i = 1; i < datelength; i++) {
for (var i = 0; i < datelength; i++) {
if (i.toString() in data.types[type]){
total = total + data.types[type][i];
}
Expand Down

0 comments on commit bf120d6

Please sign in to comment.