Skip to content

Commit

Permalink
Fixed #6082 - don’t show expected checkin in email if none given
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Aug 16, 2018
1 parent aed769c commit f6971b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@if (isset($last_checkout))
| **{{ trans('mail.checkout_date') }}** | {{ $last_checkout }} |
@endif
@if (isset($expected_checkin))
@if ((isset($expected_checkin)) && ($expected_checkin!=''))
| **{{ trans('mail.expecting_checkin_date') }}** | {{ $expected_checkin }} |
@endif
@foreach($fields as $field)
Expand Down

0 comments on commit f6971b8

Please sign in to comment.