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;
|
$invoice = $event->invoice;
|
||||||
$account = Auth::user()->account;
|
$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->invoice_design_id = $invoice->invoice_design_id;
|
||||||
$account->save();
|
$account->save();
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
@stop
|
@stop
|
||||||
|
|
||||||
@section('body')
|
@section('body')
|
||||||
<h2 style="{!! $account->getheaderFontCss() !!}">{{ trans('texts.confirmation_header') }}</h2>
|
<h2>{{ trans('texts.confirmation_header') }}</h2>
|
||||||
<div>
|
<div>
|
||||||
{{ $invitationMessage . trans('texts.button_confirmation_message') }}
|
{{ $invitationMessage . trans('texts.button_confirmation_message') }}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user