diff --git a/application/controllers/Uitslag.php b/application/controllers/Uitslag.php index d14a60c..9db905e 100644 --- a/application/controllers/Uitslag.php +++ b/application/controllers/Uitslag.php @@ -49,14 +49,14 @@ class Uitslag extends CI_Controller $uitslag = array(); foreach ($subgroepen as $subgroep) { - $data['uitslag'][$subgroep['id']]['total'] = 0; + $uitslagr[$subgroep['id']]['total'] = 0; $scores = $this->Uitslag_model->get_subgroep_punten($subgroep['id']); foreach ($scores as $score) { $scoremaxsg = $this->Uitslag_model->get_max_punten_detail($score['spelgebiedid']); $scoreitem = ($score['score']/$scoremaxsg['maxscore']) * $totaalpsg * $scoremaxsg['gewicht']; $uitslagr[$subgroep['id']][$score['spelgebiedid']] = $scoreitem; - $uitslagr[$subgroep['id']]['total'] = $data['uitslag'][$subgroep['id']]['total'] + $scoreitem; + $uitslagr[$subgroep['id']]['total'] = $uitslagr[$subgroep['id']]['total'] + $scoreitem; } }