Doh, copy and paste error
Signed-off-by: Michael Tänzer <neo@nhng.de>
This commit is contained in:
parent
118cf4383e
commit
582357352c
2 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ class ManageAccountController extends Zend_Controller_Action
|
|||
$assuree = $user->findNewAssuree();
|
||||
|
||||
if ($values['percentage'] === 'percentage') {
|
||||
$points = ($user->maxpoints() * intval($values['points']) /100);
|
||||
$points = ($user->maxpoints() * intval($values['points'])) /100;
|
||||
}elseif ($values['percentage'] === 'absolute') {
|
||||
$points = intval($values['points']);
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($this->assurancesDone as $i => $assurance) {?>
|
||||
<?php foreach ($this->assurances as $i => $assurance) {?>
|
||||
<tr>
|
||||
<td><?php print $i ?></td>
|
||||
<td><?php print $assurance['assuree'] ?></td>
|
||||
|
|
Loading…
Reference in a new issue