diff --git a/queues.md b/queues.md index fd621c7226..1add604195 100644 --- a/queues.md +++ b/queues.md @@ -127,7 +127,7 @@ You may also push a Closure onto the queue. This is very convenient for quick, s $job->delete(); }); -When using Iron.io [push queues](#push-queues), you should take extra precaution queueing Closures. The end-point that receives your queue messages should check for a token to verify that the request is actually from Iron.io. For example, your push queue end-point should be something like: `https://yourapp.com/queue/receive?token=SecretToken`. You may then check the value of the secret token in your application before marshaling the queue request. +When using Iron.io [push queues](#push-queues), you should take extra precaution queueing Closures. The end-point that receives your queue messages should check for a token to verify that the request is actually from Iron.io. For example, your push queue end-point should be something like: `https://yourapp.com/queue/receive?token=SecretToken`. You may then check the value of the secret token in your application before marshalling the queue request. ## Running The Queue Listener diff --git a/releases.md b/releases.md index 67e4e14451..4cdde5add7 100644 --- a/releases.md +++ b/releases.md @@ -55,4 +55,4 @@ With this release, we're also introducing an entirely new session engine. Simila ### Doctrine DBAL -If you are using the `renameColumn` function in your migrations, you will need to add the `doctrine/dbal` dependency to your `composer.json` file. This package is no longer included in Laravel by default. \ No newline at end of file +If you are using the `renameColumn` function in your migrations, you will need to add the `doctrine/dbal` dependency to your `composer.json` file. This package is no longer included in Laravel by default. diff --git a/upgrade.md b/upgrade.md index a1ac18ec90..976baa2913 100644 --- a/upgrade.md +++ b/upgrade.md @@ -7,7 +7,7 @@ ## Upgrading To 4.1.29 From <= 4.1.x -Laravel 4.1.29 improves the column quoting for all database drivers. This protects your application from some mass assignment vulnerabilities when **not** using the `fillable` property on models. If you are using the `fillable` property on your models to protect against mass assignemnt, your application is not vulerable. However, if you are using `guarded` and are passing a user controlled array into an "update" or "save" type function, you should upgrade to `4.1.29` immediately as your application may be at risk of mass assignment. +Laravel 4.1.29 improves the column quoting for all database drivers. This protects your application from some mass assignment vulnerabilities when **not** using the `fillable` property on models. If you are using the `fillable` property on your models to protect against mass assignment, your application is not vulnerable. However, if you are using `guarded` and are passing a user controlled array into an "update" or "save" type function, you should upgrade to `4.1.29` immediately as your application may be at risk of mass assignment. To upgrade to Laravel 4.1.29, simply `composer update`. No breaking changes are introduced in this release.