Browse Source

Merge branch 'master' into develop

Taylor Otwell 10 years ago
parent
commit
3ea3cc6287
3 changed files with 6 additions and 5 deletions
  1. 3 3
      app/config/mail.php
  2. 1 1
      app/config/queue.php
  3. 2 1
      app/views/emails/auth/reminder.blade.php

+ 3 - 3
app/config/mail.php

@@ -35,9 +35,9 @@ return array(
 	| SMTP Host Port
 	|--------------------------------------------------------------------------
 	|
-	| This is the SMTP port used by your application to delivery e-mails to
-	| users of your application. Like the host we have set this value to
-	| stay compatible with the Mailgun e-mail applications by default.
+	| This is the SMTP port used by your application to deliver e-mails to
+	| users of the application. Like the host we have set this value to
+	| stay compatible with the Mailgun e-mail application by default.
 	|
 	*/
 

+ 1 - 1
app/config/queue.php

@@ -11,7 +11,7 @@ return array(
 	| API, giving you convenient access to each back-end using the same
 	| syntax for each one. Here you may set the default queue driver.
 	|
-	| Supported: "sync", "beanstalkd", "sqs", "iron"
+	| Supported: "sync", "beanstalkd", "sqs", "iron", "redis"
 	|
 	*/
 

+ 2 - 1
app/views/emails/auth/reminder.blade.php

@@ -7,7 +7,8 @@
 		<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('password/reset', array($token)) }}.<br/>
+			This link will expire in {{ Config::get('auth.reminder.expire', 60) }} minutes.
 		</div>
 	</body>
 </html>