File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Yii Framework 2 Change Log
6
6
7
7
- Bug #16509 : Fixed console command help text wordwrap for multi-byte strings (alexkart)
8
8
- Bug #17299 : Fixed adding of input error class in ` \yii\widgets\ActiveField::widget ` (alexkart)
9
+ - Bug #17328 : Added mime aliases for BMP and SVG files (cmoeke)
9
10
10
11
11
12
2.0.19 May 21, 2019
Original file line number Diff line number Diff line change 6
6
*/
7
7
return [
8
8
'text/xml ' => 'application/xml ' ,
9
+ 'image/svg ' => 'image/svg+xml ' ,
10
+ 'image/x-bmp ' => 'image/bmp ' ,
11
+ 'image/x-bitmap ' => 'image/bmp ' ,
12
+ 'image/x-xbitmap ' => 'image/bmp ' ,
13
+ 'image/x-win-bitmap ' => 'image/bmp ' ,
14
+ 'image/x-windows-bmp ' => 'image/bmp ' ,
15
+ 'image/ms-bmp ' => 'image/bmp ' ,
16
+ 'image/x-ms-bmp ' => 'image/bmp ' ,
17
+ 'application/bmp ' => 'image/bmp ' ,
18
+ 'application/x-bmp ' => 'image/bmp ' ,
19
+ 'application/x-win-bitmap ' => 'image/bmp ' ,
9
20
];
You can’t perform that action at this time.
0 commit comments