mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 06:08:21 +01:00
Fix #3471: Display of Date Time Column in excel with empty/false value
This commit is contained in:
parent
f276669a72
commit
9f74562a37
@ -30,6 +30,7 @@ class DateTimeColumn extends DataColumn
|
||||
*/
|
||||
public function renderDataCellContent($model, $key, $index)
|
||||
{
|
||||
return Date::PHPToExcel(parent::renderDataCellContent($model, $key, $index));
|
||||
$value = Date::PHPToExcel(parent::renderDataCellContent($model, $key, $index));
|
||||
return $value === false ? null : $value;
|
||||
}
|
||||
}
|
||||
|
@ -11,6 +11,7 @@ HumHub Change Log
|
||||
- Fix: Directory stats progress color (@Felli)
|
||||
- Fix #2724: Edited post does not display the space on dashboard
|
||||
- Fix #3533: Responsive design issues
|
||||
- Fix #3471: Display of Date Time Column in excel with empty/false value
|
||||
|
||||
|
||||
1.3.13 (May 3, 2019)
|
||||
|
Loading…
x
Reference in New Issue
Block a user