]> BookStack Code Mirror - bookstack/blobdiff - app/Notifications/ResetPassword.php
Update settings.php
[bookstack] / app / Notifications / ResetPassword.php
index 282aa335a07aed35b52c4ad2520565d567ca217f..20875276400f0403d1a9a063459e37195a2cd475 100644 (file)
@@ -1,6 +1,5 @@
 <?php namespace BookStack\Notifications;
 
-
 class ResetPassword extends MailNotification
 {
     /**
@@ -30,7 +29,7 @@ class ResetPassword extends MailNotification
             return $this->newMailMessage()
             ->subject(trans('auth.email_reset_subject', ['appName' => setting('app-name')]))
             ->line(trans('auth.email_reset_text'))
-            ->action(trans('auth.reset_password'), baseUrl('password/reset/' . $this->token))
+            ->action(trans('auth.reset_password'), url('password/reset/' . $this->token))
             ->line(trans('auth.email_reset_not_requested'));
     }
 }