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();
|
$assuree = $user->findNewAssuree();
|
||||||
|
|
||||||
if ($values['percentage'] === 'percentage') {
|
if ($values['percentage'] === 'percentage') {
|
||||||
$points = ($user->maxpoints() * intval($values['points']) /100);
|
$points = ($user->maxpoints() * intval($values['points'])) /100;
|
||||||
}elseif ($values['percentage'] === 'absolute') {
|
}elseif ($values['percentage'] === 'absolute') {
|
||||||
$points = intval($values['points']);
|
$points = intval($values['points']);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($this->assurancesDone as $i => $assurance) {?>
|
<?php foreach ($this->assurances as $i => $assurance) {?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php print $i ?></td>
|
<td><?php print $i ?></td>
|
||||||
<td><?php print $assurance['assuree'] ?></td>
|
<td><?php print $assurance['assuree'] ?></td>
|
||||||
|
|
Loading…
Reference in a new issue