diff --git a/src/Template/Element/claimbox.ctp b/src/Template/Element/claimbox.ctp index 8013628..628188c 100644 --- a/src/Template/Element/claimbox.ctp +++ b/src/Template/Element/claimbox.ctp @@ -1,8 +1,8 @@ getAutoThumbText(); $cost = ''; -if (isset($claim->Price) && $claim->Price > 0) { - $cost = $this->Amount->formatCurrency($claim->Price) . ' LBC'; +if (isset($claim->price) && $claim->price > 0) { + $cost = $this->Amount->formatCurrency($claim->price) . ' LBC'; } else if (isset($claim->fee) && strtolower($claim->fee_currency) === 'lbc') { $cost = $this->Amount->formatCurrency($claim->fee) . ' LBC'; }