1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Laravel-5.4.22 Fix

This commit is contained in:
Hillel Coren 2017-05-09 19:47:30 +03:00
parent a00fc11765
commit 963aac4c34
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
<h2>Password Reset</h2>
<div>
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
To reset your password, complete this form: {{ URL::to(SITE_URL . '/password/reset', array($token)) }}.
</div>
</body>
</html>
</html>

View File

@ -8,7 +8,7 @@
<div>
<center>
@include('partials.email_button', [
'link' => URL::to("client/password/reset/{$token}"),
'link' => URL::to(SITE_URL . "/client/password/reset/{$token}"),
'field' => 'reset',
'color' => '#36c157',
])

View File

@ -8,7 +8,7 @@
<div>
<center>
@include('partials.email_button', [
'link' => URL::to("password/reset/{$token}"),
'link' => URL::to(SITE_URL . "/password/reset/{$token}"),
'field' => 'reset',
'color' => '#36c157',
])