mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
(fix) we now respect the cr/lf in event's description (#3228)
This commit is contained in:
@@ -24,6 +24,7 @@ Bug fixes
|
||||
- improved EAS email flagging handling (#3140)
|
||||
- fixed computation of GlobalObjectId (#3235)
|
||||
- fixed EAS conversation ID issues on BB10 (#3152)
|
||||
- fixed CR/LF printing in event's description (#3228)
|
||||
|
||||
2.3.0 (2015-06-01)
|
||||
-------------------
|
||||
|
||||
@@ -581,7 +581,7 @@ function _parseEvent(event) {
|
||||
|
||||
if (event[21] && event[21].length) {
|
||||
descriptionCell.innerHTML = description;
|
||||
descriptionCellValue.innerHTML = event[21];
|
||||
descriptionCellValue.innerHTML = event[21].replace(/(?:\r\n|\r|\n)/g, '<br/>');
|
||||
}
|
||||
|
||||
if (printColors.checked) {
|
||||
|
||||
Reference in New Issue
Block a user