Skip to content
Snippets Groups Projects

Fix 'Deprecated function: strlen(): Passing null to parameter #1 ($string) of...

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -89,7 +89,7 @@ class CropTypeListBuilder extends ConfigEntityListBuilder {
'data' => $entity->label(),
'class' => ['menu-label'],
];
$row['description'] = Xss::filterAdmin($entity->description);
$row['description'] = Xss::filterAdmin($entity->description ?? '');
$row['aspect_ratio'] = $entity->getAspectRatio();
// Load all image styles used by the current crop type.
Loading