mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-03-06 05:59:41 +00:00
Fixed: [export] Fix checking of null value: take also empty string value
This commit is contained in:
@@ -66,7 +66,7 @@ class ActivityUserAggregator implements AggregatorInterface
|
||||
return 'Activity user';
|
||||
}
|
||||
|
||||
if (null === $value) {
|
||||
if (null === $value || '' === $value) {
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user