mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Bug fixes
This commit is contained in:
parent
cf24684adb
commit
90e7d5dafa
@ -21,7 +21,8 @@ class InvoiceListener
|
||||
$invoice = $event->invoice;
|
||||
$account = Auth::user()->account;
|
||||
|
||||
if ($account->invoice_design_id != $invoice->invoice_design_id) {
|
||||
if ($invoice->invoice_design_id
|
||||
&& $account->invoice_design_id != $invoice->invoice_design_id) {
|
||||
$account->invoice_design_id = $invoice->invoice_design_id;
|
||||
$account->save();
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
@stop
|
||||
|
||||
@section('body')
|
||||
<h2 style="{!! $account->getheaderFontCss() !!}">{{ trans('texts.confirmation_header') }}</h2>
|
||||
<h2>{{ trans('texts.confirmation_header') }}</h2>
|
||||
<div>
|
||||
{{ $invitationMessage . trans('texts.button_confirmation_message') }}
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user