Skip to content

Commit

Permalink
[5.6] Revert email lang template changes. (#25983)
Browse files Browse the repository at this point in the history
* [5.6] Revert email lang template changes.
I`m not sure, but probably we also should reverting `email lang template` ([#25734](#25734)) changes in 5.6 version

Since in prev 5.6 release we also had:
 - `Fixed translation escaping ([#25858](#25858), [4c46500](https://github.com/laravel/framework/commit/4c465007bbf51d7f269871cd76b6d99de7df90bb))` for fixed translation escaping

The same revert was in 5.7 (#25963)

* [5.6] Revert email lang template changes.
 - add `comma` after last value in array.
  • Loading branch information
TBlindaruk authored and taylorotwell committed Oct 7, 2018
1 parent 7cc72ee commit 71964f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Notifications/resources/views/email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@
@component('mail::subcopy')
@lang(
"If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
'into your web browser: ',
'into your web browser: [:actionURL](:actionURL)',
[
'actionText' => $actionText
'actionText' => $actionText,
'actionURL' => $actionUrl,
]
)
[{{ $actionUrl }}]({!! $actionUrl !!})
@endcomponent
@endisset
@endcomponent

0 comments on commit 71964f8

Please sign in to comment.