mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 14:26:54 +08:00
Fix comment msg UnprocessableEntity #2106
This commit is contained in:
@ -4,7 +4,6 @@ Yii Framework 2 Change Log
|
||||
2.0.7 under development
|
||||
-----------------------
|
||||
|
||||
- Enh #2106: Added Unprocessable Entity Http Exception (janfrs)
|
||||
- Bug #8723: Fixed `yii\helpers\VarDumper::export()` unable to export circle referenced objects with `Closure` (klimov-paul)
|
||||
- Bug #9108: Negative number resulted in no formatting when using `Formatter::asSize()` or `Formatter::asShortSize` (nxnx, cebe)
|
||||
- Bug #9288: Fixed `FileHelper::createDirectory` directory creation to be concurrency friendly (dynasource)
|
||||
@ -17,6 +16,7 @@ Yii Framework 2 Change Log
|
||||
- Bug #9678: `I18N::format()` wasn't able to handle named placeholder in "selectordinal" (samdark)
|
||||
- Chg #9369: `Yii::$app->user->can()` now returns `false` instead of erroring in case `authManager` component is not configured (creocoder)
|
||||
- Chg #9411: `DetailView` now automatically sets container tag ID in case it's not specified (samdark)
|
||||
- Enh #2106: Added Unprocessable Entity Http Exception (janfrs)
|
||||
- Enh #9635: Added default CSS class for `\yii\grid\ActionColumn` header (arogachev, dynasource)
|
||||
|
||||
|
||||
|
@ -12,8 +12,8 @@ namespace yii\web;
|
||||
* exception with status code 422.
|
||||
*
|
||||
* Use this exception to inform that the server understands the content type of
|
||||
* the request entity and the syntax of that request entity is correct but was
|
||||
* unable to process the contained instructions. For example, to return form
|
||||
* the request entity and the syntax of that request entity is correct but server
|
||||
* was unable to process the contained instructions. For example, to return form
|
||||
* validation errors.
|
||||
*
|
||||
* @link http://www.webdav.org/specs/rfc2518.html#STATUS_422
|
||||
|
Reference in New Issue
Block a user