1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

Merge pull request #8268 from turbo124/v5-develop

Fixes for translation string in subscriptions
This commit is contained in:
David Bomba 2023-02-09 09:24:10 +11:00 committed by GitHub
commit 150c341eb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -87,6 +87,9 @@ class CreditCard
return $this->paytrace->processUnsuccessfulTransaction($data);
}
nlog("paytrace response createCustomer");
nlog($response);
$cgt = [];
$cgt['token'] = $response->customer_id;
$cgt['payment_method_id'] = GatewayType::CREDIT_CARD;

View File

@ -54,7 +54,7 @@ class PurchaseOrderService
if (! $this->purchase_order->design_id)
$this->purchase_order->design_id = $this->decodePrimaryKey($settings->purchase_order_design_id);
if (!isset($this->invoice->footer) || empty($this->invoice->footer))
if (!isset($this->purchase_order->footer) || empty($this->purchase_order->footer))
$this->purchase_order->footer = $settings->purchase_order_footer;
if (!isset($this->purchase_order->terms) || empty($this->purchase_order->terms))

View File

@ -209,7 +209,7 @@
@if($steps['passwordless_login_sent'])
<span
class="block mt-2 text-sm text-green-600">{{ ctrans('texts.email_sent') }}</span>
class="block mt-2 text-sm text-green-600">{!! ctrans('texts.sent') !!}</span>
@endif
@endif