Minor bugs
This commit is contained in:
parent
d61d9ff015
commit
b99285cfa5
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
$autoThumbText = $claim->getAutoThumbText();
|
$autoThumbText = $claim->getAutoThumbText();
|
||||||
$cost = '';
|
$cost = '';
|
||||||
if (isset($claim->Price) && $claim->Price > 0) {
|
if (isset($claim->price) && $claim->price > 0) {
|
||||||
$cost = $this->Amount->formatCurrency($claim->Price) . ' LBC';
|
$cost = $this->Amount->formatCurrency($claim->price) . ' LBC';
|
||||||
} else if (isset($claim->fee) && strtolower($claim->fee_currency) === 'lbc') {
|
} else if (isset($claim->fee) && strtolower($claim->fee_currency) === 'lbc') {
|
||||||
$cost = $this->Amount->formatCurrency($claim->fee) . ' LBC';
|
$cost = $this->Amount->formatCurrency($claim->fee) . ' LBC';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue