mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 05:48:11 +08:00
Fixes #15286: Fixed incorrect formatting of time with timezone information
This commit is contained in:
committed by
Alexander Makarov
parent
e3b7581bca
commit
22d30f1999
@ -4,6 +4,7 @@ Yii Framework 2 Change Log
|
||||
2.0.16 under development
|
||||
------------------------
|
||||
|
||||
- Bug #15286: Fixed incorrect formatting of time with timezone information (rugabarbo)
|
||||
- Bug #17021: Fix to do not remove existing message category files in a subfolder (albertborsos)
|
||||
- Bug #16991: Removed usage of `utf8_encode()` from `Request::resolvePathInfo()` (GHopperMSK)
|
||||
- Bug #16974: Regular Expression Validator to include support for 'u' (UTF-8) modifier (Dzhuneyt)
|
||||
|
||||
@ -841,7 +841,7 @@ class Formatter extends Component
|
||||
return [
|
||||
$timestamp,
|
||||
!($info['hour'] === false && $info['minute'] === false && $info['second'] === false),
|
||||
!($info['year'] === false && $info['month'] === false && $info['day'] === false),
|
||||
!($info['year'] === false && $info['month'] === false && $info['day'] === false && empty($info['zone'])),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user